In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/8d698ea9b59e8c25210dfeddf4f2257f658cf543?hp=7fe50b8b8a4dc38fc341e3b403545aaca937f50e>

- Log -----------------------------------------------------------------
commit 8d698ea9b59e8c25210dfeddf4f2257f658cf543
Author: Nicholas Clark <n...@ccl4.org>
Date:   Wed Jan 19 10:03:56 2011 +0000

    Remove references to compat3.sym and interp.sym, deleted over 10 years ago.

M       Cross/Makefile-cross-SH
M       Makefile.SH
M       Porting/pumpkin.pod

commit 57fa0b87babe854012bc4fef52b9c3b3604f1e9e
Author: Nicholas Clark <n...@ccl4.org>
Date:   Wed Jan 19 09:50:51 2011 +0000

    Remove references to Mac OS classic from comments the opcode descriptions.

M       mad/PLXML.pm
M       regen/opcodes
-----------------------------------------------------------------------

Summary of changes:
 Cross/Makefile-cross-SH |    2 --
 Makefile.SH             |    2 --
 Porting/pumpkin.pod     |    8 ++++----
 mad/PLXML.pm            |    4 ----
 regen/opcodes           |    4 ----
 5 files changed, 4 insertions(+), 16 deletions(-)

diff --git a/Cross/Makefile-cross-SH b/Cross/Makefile-cross-SH
index d41f1bd..d899212 100644
--- a/Cross/Makefile-cross-SH
+++ b/Cross/Makefile-cross-SH
@@ -837,8 +837,6 @@ perly.c: perly.y
 perly.h: perly.y
        -@sh -c true
 
-# No compat3.sym here since and including the 5.004_50.
-# No interp.sym since 5.005_03.
 SYM  = global.sym globvar.sym perlio.sym
 
 SYMH = perlvars.h intrpvar.h
diff --git a/Makefile.SH b/Makefile.SH
index 6fb3172..584afca 100755
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -1108,8 +1108,6 @@ perly.c: perly.y
 perly.h: perly.y
        -@sh -c true
 
-# No compat3.sym here since and including the 5.004_50.
-# No interp.sym since 5.005_03.
 SYM  = global.sym globvar.sym perlio.sym
 
 SYMH = perlvars.h intrpvar.h
diff --git a/Porting/pumpkin.pod b/Porting/pumpkin.pod
index 6d31dcc..f674b9c 100644
--- a/Porting/pumpkin.pod
+++ b/Porting/pumpkin.pod
@@ -450,14 +450,14 @@ and effort by manually running C<make regen_headers> 
myself rather
 than answering all the questions and complaints about the failing
 command.
 
-=head2 global.sym, interp.sym and perlio.sym
+=head2 global.sym, and perlio.sym
 
 Make sure these files are up-to-date.  Read the comments in these
 files and in perl_exp.SH to see what to do.
 
 =head2 Binary compatibility
 
-If you do change F<global.sym> or F<interp.sym>, think carefully about
+If you do change F<global.sym> think carefully about
 what you are doing.  To the extent reasonable, we'd like to maintain
 source and binary compatibility with older releases of perl.  That way,
 extensions built under one version of perl will continue to work with
@@ -814,7 +814,7 @@ conflicting needs of dynamic loading and namespace 
protection.
 
 For dynamic loading to work on AIX (and VMS) we need to provide a list
 of symbols to be exported.  This is done by the script F<perl_exp.SH>,
-which reads F<global.sym> and F<interp.sym>.  Thus, the C<pause>
+which reads F<global.sym>.  Thus, the C<pause>
 symbol would have to be added to F<global.sym>  So far, so good.
 
 On the other hand, one of the goals of Perl5 is to make it easy to
@@ -823,7 +823,7 @@ means we have to be careful to keep the visible namespace 
"clean".
 That is, we don't want perl's global variables to conflict with
 those in the other application library.  Although this work is still
 in progress, the way it is currently done is via the F<embed.h> file.
-This file is built from the F<global.sym> and F<interp.sym> files,
+This file is built from the F<global.sym> file,
 since those files already list the globally visible symbols.  If we
 had added C<pause> to global.sym, then F<embed.h> would contain the
 line
diff --git a/mad/PLXML.pm b/mad/PLXML.pm
index 7f2dac6..ad77860 100644
--- a/mad/PLXML.pm
+++ b/mad/PLXML.pm
@@ -3451,10 +3451,6 @@ sub args { 'S S S' }
 
 # Time calls.
 
-# NOTE: MacOS patches the 'i' of time() away later when the interpreter
-# is created because in MacOS time() is already returning times > 2**31-1,
-# that is, non-integers.
-
 package PLXML::op_time;
 
 our @ISA = ('PLXML::baseop');
diff --git a/regen/opcodes b/regen/opcodes
index efb1daf..5f8b88b 100644
--- a/regen/opcodes
+++ b/regen/opcodes
@@ -448,10 +448,6 @@ setpriority        setpriority             ck_fun          
isT@    S S S
 
 # Time calls.
 
-# NOTE: MacOS patches the 'i' of time() away later when the interpreter
-# is created because in MacOS time() is already returning times > 2**31-1,
-# that is, non-integers.
-
 time           time                    ck_null         isT0    
 tms            times                   ck_null         0       
 localtime      localtime               ck_fun          t%      S?

--
Perl5 Master Repository

Reply via email to