diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-20 01:47:22 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-20 01:47:22 +0000 |
commit | 977b4729c5f204fc709252a9cbe67826ddc832d0 (patch) | |
tree | 069295aadce9c52be04dc097741838781dc9b171 /pod | |
parent | 7a9d114548a2fe90e007e5a25357ee26935c8752 (diff) | |
parent | 66ecd56be076649bc9da523c12d89e06e353e801 (diff) | |
download | perl-977b4729c5f204fc709252a9cbe67826ddc832d0.tar.gz |
Integrate perlio:
[ 7755]
Add dummy crlf layer (just as buffer)
Correct 1st bug - one layer of indirection.
[ 7754]
Work-round to Perl_deb_nocontext is no longer required
[ 7753]
diff -se shows these as different
[ 7752]
Configure GCC/Win32 build -Duseperlio
Fix a couple of gross issues
- double-include of ../deb.o in re.dll
- win32sck.c needs PerlIO and FILE
[ 7751]
Special case :crlf and :raw in dummy PerlIO_apply_layers
[ 7750]
Missing aTHX_
p4raw-link: @7755 on //depot/perlio: 66ecd56be076649bc9da523c12d89e06e353e801
p4raw-link: @7754 on //depot/perlio: 29befd70e124b0c2d1673e9ffa4f201bfa81073b
p4raw-link: @7753 on //depot/perlio: 39fb0ac880fd9390e3f92048baaba9392e38eca6
p4raw-link: @7752 on //depot/perlio: 8fada4f68b93131e799325ac5c6f8a949351407d
p4raw-link: @7751 on //depot/perlio: 95c70f2077ea14f8e2426dbcac9828b259a86bf2
p4raw-link: @7750 on //depot/perlio: d6efbbad1ae8d76e90821a7418ba77645896b8bf
p4raw-id: //depot/perl@7756
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 061f403445..7a93dea82b 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2368,19 +2368,19 @@ false, defined or undefined. Does not handle 'get' magic. =for hackers Found in file sv.h -=item SvTYPE - -Returns the type of the SV. See C<svtype>. +=item svtype - svtype SvTYPE(SV* sv) +An enum of flags for Perl types. These are found in the file B<sv.h> +in the C<svtype> enum. Test these flags with the C<SvTYPE> macro. =for hackers Found in file sv.h -=item svtype +=item SvTYPE -An enum of flags for Perl types. These are found in the file B<sv.h> -in the C<svtype> enum. Test these flags with the C<SvTYPE> macro. +Returns the type of the SV. See C<svtype>. + + svtype SvTYPE(SV* sv) =for hackers Found in file sv.h |