Upgrade to podlators-1.18.
Jarkko Hietaniemi [Sat, 1 Dec 2001 04:31:53 +0000 (04:31 +0000)]
p4raw-id: //depot/perl@13396

lib/Pod/ParseLink.pm
lib/Pod/Text/Termcap.pm

index 1832559..9b35cb7 100644 (file)
@@ -1,5 +1,5 @@
 # Pod::ParseLink -- Parse an L<> formatting code in POD text.
-# $Id: ParseLink.pm,v 1.4 2001/11/23 06:19:00 eagle Exp $
+# $Id: ParseLink.pm,v 1.5 2001/12/01 01:34:49 eagle Exp $
 #
 # Copyright 2001 by Russ Allbery <rra@stanford.edu>
 #
@@ -34,7 +34,7 @@ use Exporter;
 # 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.04;
+$VERSION = 1.05;
 
 
 ##############################################################################
@@ -111,7 +111,7 @@ __END__
 
 =head1 NAME
 
-Pod::ParseLink -- Parse an L<> formatting code in POD text
+Pod::ParseLink -- Parse an LE<lt>E<gt> formatting code in POD text
 
 =head1 SYNOPSIS
 
index 41e6860..38b2658 100644 (file)
@@ -1,5 +1,5 @@
 # Pod::Text::Termcap -- Convert POD data to ASCII text with format escapes.
-# $Id: Termcap.pm,v 1.5 2001/11/28 00:21:28 eagle Exp $
+# $Id: Termcap.pm,v 1.6 2001/11/28 05:44:09 eagle Exp $
 #
 # Copyright 1999, 2001 by Russ Allbery <rra@stanford.edu>
 #
@@ -48,7 +48,7 @@ sub initialize {
         . ":/usr/share/misc/termcap:/usr/share/lib/termcap";
 
     # Fall back on a hard-coded terminal speed if POSIX::Termios isn't
-    # available.
+    # available (such as on VMS).
     eval { $termios = POSIX::Termios->new };
     if ($@) {
         $ospeed = '9600';