[PATCH] Add Pascal/Delphi (.pas file) funcname pattern.

Previous thread: git-submodule add -b by Tim Olsen on Friday, August 1, 2008 - 1:27 pm. (1 message)

Next thread: More on git over HTTP POST by H. Peter Anvin on Friday, August 1, 2008 - 2:50 pm. (40 messages)
From: Avery Pennarun
Date: Friday, August 1, 2008 - 2:00 pm

Finds classes, records, functions, procedures, and sections.  Most lines
need to start at the first column, or else there's no way to differentiate
a procedure's definition from its declaration.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
---
 diff.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
 
Changes since v1:

- Tried using '\n' to separate the two parts of the regex, but it doesn't
  work.  Seems the lines are combined with AND instead of OR.  Also can't
  reduce the number of parens since only the part in parens is returned
  as the result string.
  
- Rename 'pas' type to 'pascal'

- Remove unnecessary 'type' match.

diff --git a/diff.c b/diff.c
index cbf2547..2f88e6d 100644
--- a/diff.c
+++ b/diff.c
@@ -1380,6 +1380,12 @@ static struct builtin_funcname_pattern {
 			"^[ 	]*\\(\\([ 	]*"
 			"[A-Za-z_][A-Za-z_0-9]*\\)\\{2,\\}"
 			"[ 	]*([^;]*\\)$" },
+	{ "pascal", "^\\(\\(procedure\\|function\\|constructor\\|"
+			"destructor\\|interface\\|implementation\\|"
+			"initialization\\|finalization\\)[ \t]*.*\\)$"
+			"\\|"
+			"^\\(.*=[ \t]*\\(class\\|record\\).*\\)$" 
+			},
 	{ "tex", "^\\(\\\\\\(sub\\)*section{.*\\)$" },
 };
 
-- 
1.5.6


--

Previous thread: git-submodule add -b by Tim Olsen on Friday, August 1, 2008 - 1:27 pm. (1 message)

Next thread: More on git over HTTP POST by H. Peter Anvin on Friday, August 1, 2008 - 2:50 pm. (40 messages)