pod2man.pl would only remove the first LF from the name.
This commit is contained in:
parent
2619064e09
commit
09402efb93
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue