mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
21 lines
463 B
Bash
Executable File
21 lines
463 B
Bash
Executable File
#!/bin/sh
|
|
# This script attempts to find bad ifdef's, i.e. ifdef's that use braces
|
|
# but not the do { ... } while (0) syntax
|
|
#
|
|
# This is useful for running before pgindent
|
|
|
|
for FILE
|
|
do
|
|
awk ' BEGIN {was_define = "N"}
|
|
{ if (was_define == "Y" &&
|
|
$0 ~ /^{/)
|
|
printf "%s %d\n", FILENAME, NR
|
|
if ($0 ~ /^#define/)
|
|
was_define = "Y"
|
|
else
|
|
was_define = "N"
|
|
}' "$FILE"
|
|
grep -on '^#define.*{' "$FILE" | grep -v 'do[ ]*{'
|
|
done
|
|
|