From: Jarkko Hietaniemi Date: Thu, 10 Jul 2003 04:50:05 +0000 (+0000) Subject: Upgrade to podlators 1.27. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2ccddc9020a3f40c0b46168e45b42ae6d0c415f2;p=p5sagit%2Fp5-mst-13.2.git Upgrade to podlators 1.27. p4raw-id: //depot/perl@20106 --- diff --git a/lib/Pod/Text/Termcap.pm b/lib/Pod/Text/Termcap.pm index 61453e2..02a7fb9 100644 --- a/lib/Pod/Text/Termcap.pm +++ b/lib/Pod/Text/Termcap.pm @@ -1,5 +1,5 @@ # Pod::Text::Termcap -- Convert POD data to ASCII text with format escapes. -# $Id: Termcap.pm,v 1.10 2002/07/15 05:46:00 eagle Exp $ +# $Id: Termcap.pm,v 1.11 2003/07/09 21:52:30 eagle Exp $ # # Copyright 1999, 2001, 2002 by Russ Allbery # @@ -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 = 1.10; +$VERSION = 1.11; ############################################################################## @@ -43,8 +43,8 @@ sub initialize { my $self = shift; my ($ospeed, $term, $termios); - # The default Term::Cap path won't work on Solaris. - # $ENV{HOME} is usually not set on MSWin32. + # $ENV{HOME} is usually not set on Windows. The default Term::Cap path + # may not work on Solaris. my $home = exists $ENV{HOME} ? "$ENV{HOME}/.termcap:" : ''; $ENV{TERMPATH} = $home . '/etc/termcap:/usr/share/misc/termcap' . ':/usr/share/lib/termcap';