diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-09-27 17:16:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-09-27 17:16:08 +0000 |
commit | e2d8b79f8b0b14f1b2dcc048af6e46d21c3eaf4a (patch) | |
tree | 18779f5e4c562251e3fb85288a251192046023c9 | |
parent | 0b36cb83dc53b2455ae4a5d6d10587ad0a3c53fa (diff) | |
download | postgresql-e2d8b79f8b0b14f1b2dcc048af6e46d21c3eaf4a.tar.gz postgresql-e2d8b79f8b0b14f1b2dcc048af6e46d21c3eaf4a.zip |
Suppress FAQ and TODO changes in pgcvslog output.
-rwxr-xr-x | src/tools/pgcvslog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/pgcvslog b/src/tools/pgcvslog index 3dc58febe95..3e3ca138571 100755 --- a/src/tools/pgcvslog +++ b/src/tools/pgcvslog @@ -51,6 +51,12 @@ awk ' BEGIN {html="'"$HTML"'"; lineno = 0;} # store working directory $0 ~ /^Working file:/ {workingfile = "/" $3} + # no need to show TODO or FAQ changes in the output + $0 !~ /^====*$/ && + (workingfile == "/doc/TODO" || workingfile == "/doc/src/FAQ/TODO.html" || + workingfile == "/doc/FAQ" || workingfile == "/doc/src/FAQ/FAQ.html") \ + {next} + ($0 ~ /^====*$/ || $0 ~ /^----*$/) \ { # print blank line to separate entries |