diff options
| author | Bruce Momjian | 2001-10-30 05:38:56 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2001-10-30 05:38:56 +0000 |
| commit | c41b6b1b9cdb51d1e931f6c2cf77a912500c8bef (patch) | |
| tree | 6fdf58b328cfc0866fdddadd6197e24a108bae29 /src/tools/pgindent | |
| parent | d650a6f58093b6d62579572e0035cfeac6211fb0 (diff) | |
Fix small problem Tom Lane found with pgindent run.
Diffstat (limited to 'src/tools/pgindent')
| -rwxr-xr-x | src/tools/pgindent/pgindent | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent index e675b1715f1..ed7a1279a42 100755 --- a/src/tools/pgindent/pgindent +++ b/src/tools/pgindent/pgindent @@ -50,7 +50,8 @@ do line2 ~ "^{[ ]*$" && line1 !~ "^struct" && line1 !~ "^enum" && - line1 !~ "^typedef") + line1 !~ "^typedef" && + line1 !~ "=" ) print "int pgindent_func_no_var_fix;"; line1 = line2; } |
