Change 34431 by [EMAIL PROTECTED] on 2008/09/27 08:16:41

        Integrate:
        [ 34401]
        Integrate:
        [ 34385]
        Subject: Fwd: CPAN Upload: S/SA/SAPER/constant-1.16.tar.gz
        From: Sébastien Aperghis-Tramoni <[EMAIL PROTECTED]>
        Date: Sun, 21 Sep 2008 16:13:36 +0200
        Message-Id: <[EMAIL PROTECTED]>
        
        [ 34430]
        Integrate:
        [ 34373]
        "Upgrade" AutoSplit to 1.06.

Affected files ...

... //depot/maint-5.8/perl/lib/AutoSplit.pm#8 integrate
... //depot/maint-5.8/perl/lib/constant.pm#6 integrate

Differences ...

==== //depot/maint-5.8/perl/lib/AutoSplit.pm#8 (text) ====
Index: perl/lib/AutoSplit.pm
--- perl/lib/AutoSplit.pm#7~33925~      2008-05-25 13:50:26.000000000 -0700
+++ perl/lib/AutoSplit.pm       2008-09-27 01:16:41.000000000 -0700
@@ -9,7 +9,7 @@
 our($VERSION, @ISA, @EXPORT, @EXPORT_OK, $Verbose, $Keep, $Maxlen,
     $CheckForAutoloader, $CheckModTime);
 
-$VERSION = "1.05_01";
+$VERSION = "1.06";
 @ISA = qw(Exporter);
 @EXPORT = qw(&autosplit &autosplit_lib_modules);
 @EXPORT_OK = qw($Verbose $Keep $Maxlen $CheckForAutoloader $CheckModTime);

==== //depot/maint-5.8/perl/lib/constant.pm#6 (text) ====
Index: perl/lib/constant.pm
--- perl/lib/constant.pm#5~33173~       2008-02-01 11:33:57.000000000 -0800
+++ perl/lib/constant.pm        2008-09-27 01:16:41.000000000 -0700
@@ -4,7 +4,7 @@
 use warnings::register;
 
 use vars qw($VERSION %declared);
-$VERSION = '1.15';
+$VERSION = '1.16';
 
 #=======================================================================
 
@@ -168,7 +168,7 @@
 far less likely to send a space probe to the wrong planet because
 nobody noticed the one equation in which you wrote C<3.14195>.
 
-When a constant is used in an expression, perl replaces it with its
+When a constant is used in an expression, Perl replaces it with its
 value at compile time, and may then optimize the expression further.
 In particular, any code in an C<if (CONSTANT)> block will be optimized
 away if the constant is false.
@@ -331,6 +331,20 @@
 (or simply use a comma in place of the big arrow) instead of
 C<< CONSTANT => 'value' >>.
 
+=head1 SEE ALSO
+
+L<Readonly> - Facility for creating read-only scalars, arrays, hashes.
+
+L<Const> - Facility for creating read-only variables. Similar to C<Readonly>,
+but uses C<SvREADONLY> instead of C<tie>.
+
+L<Attribute::Constant> - Make read-only variables via attribute
+
+L<Scalar::Readonly> - Perl extension to the C<SvREADONLY> scalar flag
+
+L<Hash::Util> - A selection of general-utility hash subroutines (mostly
+to lock/unlock keys and values)
+
 =head1 BUGS
 
 Please report any bugs or feature requests via the perlbug(1) utility.
@@ -350,7 +364,7 @@
 The CPAN distribution is maintained by SE<eacute>bastien Aperghis-Tramoni
 E<lt>F<[EMAIL PROTECTED]>E<gt>.
 
-=head1 COPYRIGHT
+=head1 COPYRIGHT & LICENSE
 
 Copyright (C) 1997, 1999 Tom Phoenix
 
End of Patch.

Reply via email to