mwdn2man: Fix a bug in newline supression. Closes: #606578

This commit is contained in:
Joey Hess 2010-12-10 17:27:02 -04:00
parent 1f22c9ea38
commit cdf040e816
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View file

@ -1,6 +1,7 @@
git-annex (0.12) UNRELEASED; urgency=low
* Add --exclude option to exclude files from processing.
* mwdn2man: Fix a bug in newline supression. Closes: #606578
-- Joey Hess <joeyh@debian.org> Wed, 08 Dec 2010 14:06:47 -0400

View file

@ -14,7 +14,7 @@ while (<>) {
s/^#\s/.SH /;
<>; # blank;
}
s/^ +//;
s/^[ \n]+//;
s/^\t/ /;
s/-/\\-/g;
s/^Warning:.*//g;