Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b36cb8 commit e2d8b79Copy full SHA for e2d8b79
src/tools/pgcvslog
@@ -51,6 +51,12 @@ awk ' BEGIN {html="'"$HTML"'"; lineno = 0;}
51
# store working directory
52
$0 ~ /^Working file:/ {workingfile = "/" $3}
53
54
+ # no need to show TODO or FAQ changes in the output
55
+ $0 !~ /^====*$/ &&
56
+ (workingfile == "/doc/TODO" || workingfile == "/doc/src/FAQ/TODO.html" ||
57
+ workingfile == "/doc/FAQ" || workingfile == "/doc/src/FAQ/FAQ.html") \
58
+ {next}
59
+
60
($0 ~ /^====*$/ || $0 ~ /^----*$/) \
61
{
62
# print blank line to separate entries
0 commit comments