From: Bruce Momjian Date: Sat, 3 Nov 2001 22:34:13 +0000 (+0000) Subject: Require closing paren on line above brace to identify function X-Git-Tag: REL7_2_BETA2~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ee7c19e3ca7351a001228f06999354b62203b7b;p=postgresql Require closing paren on line above brace to identify function difinition, just for formatting workaround, per Tom's discovery. --- diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent index 5a644aaa36..677a4869cc 100755 --- a/src/tools/pgindent/pgindent +++ b/src/tools/pgindent/pgindent @@ -51,8 +51,9 @@ do line1 !~ "^struct" && line1 !~ "^enum" && line1 !~ "^typedef" && - line1 !~ "\"C\"" && - line1 !~ "=" ) + line1 !~ "extern[ ][ ]*\"C\"" && + line1 !~ "=" && + line1 ~ ")") print "int pgindent_func_no_var_fix;"; line1 = line2; }