.1]; as Re: [PATCH 5.6.1-TRIAL1 and @8223]; was Re: Perlbug 20000322.006 status update
Robin Barker [Tue, 2 Jan 2001 15:35:03 +0000 (15:35 +0000)]
Message-Id: <200101021535.PAA15161@tempest.npl.co.uk>

p4raw-id: //depot/perl@8310

README.amiga
lib/CPAN.pm
lib/Win32.pod
pod/perl56delta.pod
pod/perlrequick.pod

index 600858b..3b2a1bd 100644 (file)
@@ -101,16 +101,24 @@ easier to use your script under *nix.)
 Perl under AmigaOS lacks some features of perl under UNIX because of
 deficiencies in the UNIX-emulation, most notably:
 
-=over 6
+=over 4
+
+=item * 
 
-=item fork()
+fork()
+
+=item *
 
-=item some features of the UNIX filesystem regarding link count and file dates
+some features of the UNIX filesystem regarding link count and file dates
 
-=item inplace operation (the -i switch) without backup file
+=item *
+
+inplace operation (the -i switch) without backup file
+
+=item *
 
-=item umask() works, but the correct permissions are only set when the file is
-      finally close()d
+umask() works, but the correct permissions are only set when the file is
+finally close()d
 
 =back
 
index ca89b50..fce7dc4 100644 (file)
@@ -6269,8 +6269,6 @@ Returns 1 if the module is installed and up-to-date.
 
 Returns the author's ID of the module.
 
-=item
-
 =back
 
 =head2 Cache Manager
index 303374b..842e484 100644 (file)
@@ -175,9 +175,9 @@ function.
 system boot. Resolution is limited to system timer ticks (about 10ms
 on WinNT and 55ms on Win9X).
 
-=item
+=item Win32::InitiateSystemShutdown
 
-Win32::InitiateSystemShutdown(MACHINE, MESSAGE, TIMEOUT, FORCECLOSE, REBOOT)
+(MACHINE, MESSAGE, TIMEOUT, FORCECLOSE, REBOOT)
 
 [EXT] Shutsdown the specified MACHINE, notifying users with the
 supplied MESSAGE, within the specified TIMEOUT interval. Forces
index a0c4b06..fc0d668 100644 (file)
@@ -2631,11 +2631,12 @@ but still allowed it.
 
 In Perl 5.6.0 and later, C<"$$1"> always means C<"${$1}">.
 
-=item
+=item delete(), each(), values() and C<\(%h)>
 
-delete(), values() and C<\(%h)> operate on aliases to values, not copies
+operate on aliases to values, not copies
 
-delete(), each(), values() and hashes in a list context return the actual
+delete(), each(), values() and hashes (e.g. C<\(%h)>)
+in a list context return the actual
 values in the hash, instead of copies (as they used to in earlier
 versions).  Typical idioms for using these constructs copy the
 returned values, but this can make a significant difference when
@@ -2915,7 +2916,9 @@ include the following:
 
 =item The DB module
 
-=item The regular expression constructs C<(?{ code })> and C<(??{ code })>
+=item The regular expression code constructs: 
+
+C<(?{ code })> and C<(??{ code })>
 
 =back
 
index 3e29a4a..5b72a35 100644 (file)
@@ -304,18 +304,30 @@ have the following meanings:
 
 =over 4
 
-=item * C<a?> = match 'a' 1 or 0 times
+=item *
+
+C<a?> = match 'a' 1 or 0 times
+
+=item *
+
+C<a*> = match 'a' 0 or more times, i.e., any number of times
+
+=item *
 
-=item * C<a*> = match 'a' 0 or more times, i.e., any number of times
+C<a+> = match 'a' 1 or more times, i.e., at least once
 
-=item * C<a+> = match 'a' 1 or more times, i.e., at least once
+=item *
 
-=item * C<a{n,m}> = match at least C<n> times, but not more than C<m>
+C<a{n,m}> = match at least C<n> times, but not more than C<m>
 times.
 
-=item * C<a{n,}> = match at least C<n> or more times
+=item *
+
+C<a{n,}> = match at least C<n> or more times
+
+=item *
 
-=item * C<a{n}> = match exactly C<n> times
+C<a{n}> = match exactly C<n> times
 
 =back