diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-11 00:36:12 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-11 00:36:12 +0000 |
commit | edeb298add09eaee426066d6381b73ccbb93421f (patch) | |
tree | 118bb79c5fc3c4e83b52445981703a51ab1fd0ba /mk/help | |
parent | 1042823763fd3c1f0dd3ea5a10999873ef5acbdc (diff) | |
download | pkgsrc-edeb298add09eaee426066d6381b73ccbb93421f.tar.gz |
Bugfix: the first and second paragraph of a topic had not had an empty
line between them.
Diffstat (limited to 'mk/help')
-rw-r--r-- | mk/help/help.awk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/help/help.awk b/mk/help/help.awk index 3b84e4ce07f..cd705df1c13 100644 --- a/mk/help/help.awk +++ b/mk/help/help.awk @@ -1,4 +1,4 @@ -# $NetBSD: help.awk,v 1.8 2007/01/09 04:28:23 rillig Exp $ +# $NetBSD: help.awk,v 1.9 2007/01/11 00:36:12 rillig Exp $ # # This program extracts the inline documentation from *.mk files. @@ -50,6 +50,7 @@ function end_of_topic() { always { ignore_this_line = (ignore_next_empty_line && $0 == "#"); + ignore_next_empty_line = no; } # There is no need to print the RCS Id, since the full pathname |