]> git.ipfire.org Git - thirdparty/git.git/commitdiff
userdiff style: normalize pascal regex declaration
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Thu, 8 Apr 2021 15:04:18 +0000 (17:04 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 8 Apr 2021 19:19:09 +0000 (12:19 -0700)
Declare the pascal pattern consistently with how we declare the
others, not having "\n" on one line by itself, but as part of the
pattern, and when there are alterations have the "|" at the start, not
end of the line.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
userdiff.c

index 33b0ce40202dc7ac10be322760a2efacd1ec8970..978ae6415594bd7c8128beca8167337d956c384e 100644 (file)
@@ -175,9 +175,8 @@ PATTERNS("objc",
         "|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
         "|[-+*/<>%&^|=!]=|--|\\+\\+|<<=?|>>=?|&&|\\|\\||::|->"),
 PATTERNS("pascal",
-        "^(((class[ \t]+)?(procedure|function)|constructor|destructor|interface|"
-               "implementation|initialization|finalization)[ \t]*.*)$"
-        "\n"
+        "^(((class[ \t]+)?(procedure|function)|constructor|destructor|interface"
+        "|implementation|initialization|finalization)[ \t]*.*)$\n"
         "^(.*=[ \t]*(class|record).*)$",
         /* -- */
         "[a-zA-Z_][a-zA-Z0-9_]*"