diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-01-28 17:25:03 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-01-28 17:25:03 +0000 |
commit | 8f20275887caedc32e165a1aa9890f861054dd9a (patch) | |
tree | 942107be35d88adc0ba6f69d7c84bc907384ec9a /lib/Pod/Text | |
parent | 2352541471cd5a156f21e29f93b7167afe87acb2 (diff) | |
download | perl-8f20275887caedc32e165a1aa9890f861054dd9a.tar.gz |
Upgrade to podlators-2.0.2
p4raw-id: //depot/perl@26988
Diffstat (limited to 'lib/Pod/Text')
-rw-r--r-- | lib/Pod/Text/Color.pm | 15 | ||||
-rw-r--r-- | lib/Pod/Text/Termcap.pm | 14 |
2 files changed, 19 insertions, 10 deletions
diff --git a/lib/Pod/Text/Color.pm b/lib/Pod/Text/Color.pm index 68de203e4e..ce95dbe56f 100644 --- a/lib/Pod/Text/Color.pm +++ b/lib/Pod/Text/Color.pm @@ -1,7 +1,7 @@ # Pod::Text::Color -- Convert POD data to formatted color ASCII text -# $Id: Color.pm,v 2.1 2004/12/31 21:50:00 eagle Exp $ +# $Id: Color.pm,v 2.3 2006-01-25 23:56:54 eagle Exp $ # -# Copyright 1999, 2001, 2004 by Russ Allbery <rra@stanford.edu> +# Copyright 1999, 2001, 2004, 2006 by Russ Allbery <rra@stanford.edu> # # This program is free software; you may redistribute it and/or modify it # under the same terms as Perl itself. @@ -29,7 +29,7 @@ use vars qw(@ISA $VERSION); # Don't use the CVS revision as the version, since this module is also in Perl # core and too many things could munge CVS magic revision strings. This # number should ideally be the same as the CVS revision in podlators, however. -$VERSION = 2.01; +$VERSION = 2.03; ############################################################################## # Overrides @@ -69,9 +69,14 @@ sub wrap { my $output = ''; my $spaces = ' ' x $$self{MARGIN}; my $width = $$self{opt_width} - $$self{MARGIN}; + + # We have to do $shortchar and $longchar in variables because the + # construct ${char}{0,$width} didn't do the right thing until Perl 5.8.x. my $char = '(?:(?:\e\[[\d;]+m)*[^\n])'; + my $shortchar = $char . "{0,$width}"; + my $longchar = $char . "{$width}"; while (length > $width) { - if (s/^(${char}{0,$width})\s+// || s/^(${char}{$width})//) { + if (s/^($shortchar)\s+// || s/^($longchar)//) { $output .= $spaces . $1 . "\n"; } else { last; @@ -134,7 +139,7 @@ Russ Allbery <rra@stanford.edu>. =head1 COPYRIGHT AND LICENSE -Copyright 1999, 2001, 2004 by Russ Allbery <rra@stanford.edu>. +Copyright 1999, 2001, 2004, 2006 by Russ Allbery <rra@stanford.edu>. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. diff --git a/lib/Pod/Text/Termcap.pm b/lib/Pod/Text/Termcap.pm index f24e4ee70d..0b3caf3436 100644 --- a/lib/Pod/Text/Termcap.pm +++ b/lib/Pod/Text/Termcap.pm @@ -1,7 +1,7 @@ # Pod::Text::Termcap -- Convert POD data to ASCII text with format escapes. -# $Id: Termcap.pm,v 2.1 2004/12/31 21:50:00 eagle Exp $ +# $Id: Termcap.pm,v 2.3 2006-01-25 23:56:54 eagle Exp $ # -# Copyright 1999, 2001, 2002, 2004 by Russ Allbery <rra@stanford.edu> +# Copyright 1999, 2001, 2002, 2004, 2006 by Russ Allbery <rra@stanford.edu> # # This program is free software; you may redistribute it and/or modify it # under the same terms as Perl itself. @@ -30,7 +30,7 @@ use vars qw(@ISA $VERSION); # Don't use the CVS revision as the version, since this module is also in Perl # core and too many things could munge CVS magic revision strings. This # number should ideally be the same as the CVS revision in podlators, however. -$VERSION = 2.01; +$VERSION = 2.03; ############################################################################## # Overrides @@ -107,10 +107,14 @@ sub wrap { # $codes matches a single special sequence. $char matches any number of # special sequences preceeding a single character other than a newline. + # We have to do $shortchar and $longchar in variables because the + # construct ${char}{0,$width} didn't do the right thing until Perl 5.8.x. my $codes = "(?:\Q$$self{BOLD}\E|\Q$$self{UNDL}\E|\Q$$self{NORM}\E)"; my $char = "(?:$codes*[^\\n])"; + my $shortchar = $char . "{0,$width}"; + my $longchar = $char . "{$width}"; while (length > $width) { - if (s/^(${char}{0,$width})\s+// || s/^(${char}{$width})//) { + if (s/^($shortchar)\s+// || s/^($longchar)//) { $output .= $spaces . $1 . "\n"; } else { last; @@ -172,7 +176,7 @@ Russ Allbery <rra@stanford.edu>. =head1 COPYRIGHT AND LICENSE -Copyright 1999, 2001, 2002, 2004 by Russ Allbery <rra@stanford.edu>. +Copyright 1999, 2001, 2002, 2004, 2006 by Russ Allbery <rra@stanford.edu>. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. |