diff options
author | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1989-11-17 03:02:59 +0000 |
---|---|---|
committer | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1989-11-17 03:02:59 +0000 |
commit | ffed7fefd1d95d05e699dababfbb57ef2497cea1 (patch) | |
tree | ac02e16ead3b52915c921545a9ccb80f5c857501 /perl.man.2 | |
parent | 0d3e774cdb279a1eadd8282d49334b9b1bfd42ed (diff) | |
download | perl-ffed7fefd1d95d05e699dababfbb57ef2497cea1.tar.gz |
perl 3.0 patch #6 patch 5 continued
See patch 5.
Diffstat (limited to 'perl.man.2')
-rw-r--r-- | perl.man.2 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perl.man.2 b/perl.man.2 index c310cfce93..ddd53655ff 100644 --- a/perl.man.2 +++ b/perl.man.2 @@ -1,7 +1,10 @@ ''' Beginning of part 2 -''' $Header: perl.man.2,v 3.0.1.1 89/11/11 04:43:10 lwall Locked $ +''' $Header: perl.man.2,v 3.0.1.2 89/11/17 15:30:16 lwall Locked $ ''' ''' $Log: perl.man.2,v $ +''' Revision 3.0.1.2 89/11/17 15:30:16 lwall +''' patch5: fixed some manual typos and indent problems +''' ''' Revision 3.0.1.1 89/11/11 04:43:10 lwall ''' patch2: made some line breaks depend on troff vs. nroff ''' patch2: example of unshift had args backwards @@ -140,7 +143,7 @@ Here's an example of looking up non-numeric uids: $uid{$login} = $uid; $gid{$login} = $gid; } - @ary = <$pattern>; # get filenames + @ary = <${pattern}>; # get filenames if ($uid{$user} eq \'\') { die "$user not in passwd file"; } |