pod2man.pl would only remove the first LF from the name.

This commit is contained in:
Richard Levitte 2002-05-30 15:30:27 +00:00
parent 2619064e09
commit 09402efb93

View file

@ -416,8 +416,8 @@ if ($name ne 'something') {
warn "$0: Improper man page - malformed NAME header in paragraph $. of $ARGV[0]\n"
}
else {
$n[0] =~ s/\n/ /;
$n[1] =~ s/\n/ /;
$n[0] =~ s/\n/ /g;
$n[1] =~ s/\n/ /g;
%namedesc = @n;
}
}