mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Require closing paren on line above brace to identify function
difinition, just for formatting workaround, per Tom's discovery.
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user