diff options
Diffstat (limited to 'lib/Pod/PlainText.pm')
-rw-r--r-- | lib/Pod/PlainText.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Pod/PlainText.pm b/lib/Pod/PlainText.pm index e629fc81c3..3816badb7f 100644 --- a/lib/Pod/PlainText.pm +++ b/lib/Pod/PlainText.pm @@ -13,7 +13,7 @@ package Pod::PlainText; use vars qw($VERSION); -$VERSION = 1.08; ## Current version of this package +$VERSION = 1.081; ## Current version of this package require 5.004; ## requires this Perl version or later =head1 NAME @@ -279,7 +279,7 @@ sub fill { $line .= $_; } } - $par .= "$line\n" if $line; + $par .= "$line\n" if length $line; $par .= "\n"; return $par; } |