Suppress FAQ and TODO changes in pgcvslog output.

This commit is contained in:
Bruce Momjian 2005-09-27 17:16:08 +00:00
parent 0b36cb83dc
commit e2d8b79f8b
1 changed files with 6 additions and 0 deletions

View File

@ -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