Skip to content
Snippets Groups Projects
Commit e2d8b79f authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Suppress FAQ and TODO changes in pgcvslog output.

parent 0b36cb83
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment