From Graeme Hewson: Keep the list of authors in the Ethereal man page from

wrapping, and fix the title.

svn path=/trunk/; revision=11727
This commit is contained in:
Gerald Combs 2004-08-12 21:45:12 +00:00
parent 16b5c67a2b
commit de0e336434
2 changed files with 3 additions and 2 deletions

View File

@ -31,7 +31,7 @@ ethereal-tmp.pod: $(srcdir)/ethereal.pod $(top_srcdir)/AUTHORS-SHORT
$(POD2MAN) \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
ethereal-tmp.pod > ../ethereal.1
ethereal-tmp.pod | sed 's/ETHEREAL-TMP/ETHEREAL/' > ../ethereal.1
../ethereal.html: ethereal-tmp.pod ../config.h
$(POD2HTML) \

View File

@ -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;
}
}