unsubmitted _74 tweaks
Gurusamy Sarathy [Tue, 14 Jul 1998 21:43:03 +0000 (21:43 +0000)]
p4raw-id: //depot/perl@1492

Changes
mpeix/nm [changed mode: 0644->0755]
mpeix/relink [changed mode: 0644->0755]
pod/perldelta.pod
pod/perldiag.pod

diff --git a/Changes b/Changes
index 7dca324..8dd2c8b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -69,6 +69,13 @@ Version 5.004_74        Developer release working toward 5.005
 ----------------
 
 ____________________________________________________________________________
+[  1491] By: gsar                                  on 1998/07/14  08:48:28
+        Log: up patchlevel to 74; introduce distinct archname for PERL_OBJECT
+     Branch: perl
+          ! Changes patchlevel.h pod/perlhist.pod win32/Makefile
+          ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
+           ! win32/makefile.mk
+____________________________________________________________________________
 [  1490] By: gsar                                  on 1998/07/14  08:31:13
         Log: From:    Gisle Aas <gisle@aas.no>
              Date:    14 Jul 1998 10:20:34 +0200
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index 4b49498..d1f0261 100644 (file)
@@ -7,7 +7,7 @@ perldelta - what's new for perl5.005
 This document describes differences between the 5.004 release and this one.
 
 [XXX this needs more verbose summaries of the sub topics, instead of just
-the "See L<foo>."  Scheduled for a second iteration. GSAR]
+the "See foo."  Scheduled for a second iteration. GSAR]
 
 =head1 About the new versioning system
 
@@ -487,12 +487,6 @@ only with arrays that have a hash reference at index 0.
 Errno.pm module. The Errno module is expected to tie the %! hash to
 provide symbolic names for C<$!> errno values.
 
-=item Can't use %%! because Errno.pm is not available
-
-(F) The first time the %! hash is used, perl automatically loads the
-Errno.pm module. The Errno module is expected to tie the %! hash to
-provide symbolic names for C<$!> errno values.
-
 =item Cannot find an opnumber for "%s"
 
 (F) A string of a form C<CORE::word> was given to prototype(), but
index 26289b7..b87480e 100644 (file)
@@ -1523,13 +1523,13 @@ catches that.  But an easy way to do the same thing is:
 
 Another way is to assign to a substr() that's off the end of the string.
 
-=item Modification of noncreatable array value attempted, subscript %d
+=item Modification of non-creatable array value attempted, subscript %d
 
 (F) You tried to make an array value spring into existence, and the
 subscript was probably negative, even counting from end of the array
 backwards.
 
-=item Modification of noncreatable hash value attempted, subscript "%s"
+=item Modification of non-creatable hash value attempted, subscript "%s"
 
 (F) You tried to make a hash value spring into existence, and it couldn't
 be created for some peculiar reason.