diff options
author | Gerald Combs <gerald@wireshark.org> | 2004-08-12 21:45:12 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2004-08-12 21:45:12 +0000 |
commit | de0e3364345896df59ab1039e7b2abd16cc83b33 (patch) | |
tree | 39ff2e927fc0efffd56e71ce2e78d552e11e8324 /make-authors-short.pl | |
parent | 16b5c67a2b13ebd1c4e8f3c354054d00ffa8c68f (diff) | |
download | wireshark-de0e3364345896df59ab1039e7b2abd16cc83b33.tar.gz wireshark-de0e3364345896df59ab1039e7b2abd16cc83b33.tar.bz2 wireshark-de0e3364345896df59ab1039e7b2abd16cc83b33.zip |
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-x | make-authors-short.pl | 3 |
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; } } |