aboutsummaryrefslogtreecommitdiffstats
path: root/make-authors-short.pl
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2004-08-12 21:45:12 +0000
committerGerald Combs <gerald@wireshark.org>2004-08-12 21:45:12 +0000
commitde0e3364345896df59ab1039e7b2abd16cc83b33 (patch)
tree39ff2e927fc0efffd56e71ce2e78d552e11e8324 /make-authors-short.pl
parent16b5c67a2b13ebd1c4e8f3c354054d00ffa8c68f (diff)
From Graeme Hewson: Keep the list of authors in the Ethereal man page from
wrapping, and fix the title. svn path=/trunk/; revision=11727
Diffstat (limited to 'make-authors-short.pl')
-rwxr-xr-xmake-authors-short.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/make-authors-short.pl b/make-authors-short.pl
index 51fd6fc0c9..7244ad7d85 100755
--- a/make-authors-short.pl
+++ b/make-authors-short.pl
@@ -16,12 +16,13 @@ while (<>) {
print "$1\n";
} elsif (/}/) {
$subinfo = 0;
- if (($nextline = <>) !~ /^[\s\r]*$/) {
+ if (($nextline = <>) !~ /^[\s]*$/) {
print $nextline;
}
} elsif ($subinfo == 1) {
next;
} else {
+ s/^$/ /; # Make it a verbatim paragraph
print;
}
}