projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4dadca9
)
arguments swapped in perlapio.pod
author
Hans Mulder
<hansmu@xs4all.nl>
Thu, 7 Aug 1997 00:00:00 +0000
(
00:00
+0000)
committer
Tim Bunce
<Tim.Bunce@ig.co.uk>
Wed, 6 Aug 1997 12:00:00 +0000
(
00:00
+1200)
Three PerlIO functions have their arguments swapped (compared with
their stdio counterparts). Perlapio.pod gets this almost right:
p5p-msgid:
199706240049
.
CAA10534
@xs2.xs4all.nl
pod/perlapio.pod
patch
|
blob
|
history
diff --git
a/pod/perlapio.pod
b/pod/perlapio.pod
index d88e44509c929525e132493acb05091f819f8acb..0db385e388a09f89183a34f325c78534c083ff5e 100644
(file)
--- a/
pod/perlapio.pod
+++ b/
pod/perlapio.pod
@@
-99,12
+99,12
@@
are different, there is only one "count" and order has
=item B<PerlIO_close(f)>
-=item B<PerlIO_puts(
s,f)>, B<PerlIO_putc(c,f
)>
+=item B<PerlIO_puts(
f,s)>, B<PerlIO_putc(f,c
)>
These correspond to fputs() and fputc().
Note that arguments have been revised to have "file" first.
-=item B<PerlIO_ungetc(
c,f
)>
+=item B<PerlIO_ungetc(
f,c
)>
This corresponds to ungetc().
Note that arguments have been revised to have "file" first.