Fixed text_fill, \h is just available in perl >= 5.10 so use hex instead, thanks...
authoridl0r <idl0r@gentoo.org>
Sat, 2 May 2009 12:17:14 +0000 (12:17 -0000)
committeridl0r <idl0r@gentoo.org>
Sat, 2 May 2009 12:17:14 +0000 (12:17 -0000)
svn path=/; revision=575

trunk/src/echangelog/echangelog

index 9f9e365927f37ff897f99a7b3be42a76cf2c4b8f..66007fa5d8811f20c438c334df0f57d90ef2506a 100755 (executable)
@@ -93,7 +93,6 @@ sub getenv($) {
 # Copied from Text::Wrap.
 # The only modified thing is:
 # We trim _just_ tab/space etc. but not \n/\r.
-# So \h should cover \x09, \x0B, \x0C and \x20.
 # \s treats even \n/\r as whitespace.
 sub text_fill {
        my ($ip, $xp, @raw) = @_;
@@ -101,7 +100,7 @@ sub text_fill {
        my $pp;
 
        for $pp ( split(/\n\s+/, join("\n", @raw)) ) {
-               $pp =~ s/\h+/ /g;
+               $pp =~ s/[\x09|\x0B|\x0C|\x20]+/ /g;
                my $x = Text::Wrap::wrap($ip, $xp, $pp);
                push(@para, $x);
        }