summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Mulder <hans@icgned.nl>1997-06-15 23:26:47 +1200
committerTim Bunce <Tim.Bunce@ig.co.uk>1997-08-07 00:00:00 +1200
commit9515b481dd5c104b7f2065031c8c3d60c4614a19 (patch)
tree198c2b5ed75b2a693df02900fc80d93da7df7610
parentef2d312d3309ac1c38d04eea6f4d58872505013a (diff)
downloadperl-9515b481dd5c104b7f2065031c8c3d60c4614a19.tar.gz
Duplicates in perlguts.pod
Seven entries in the API listing at the end of perlguts.pod are duplicated: p5p-msgid: 9707082346.AA13231@ icgned.icgned.nl private-msgid: 9707082346.AA13231@icgned.icgned.nl
-rw-r--r--pod/perlguts.pod43
1 files changed, 0 insertions, 43 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index 28c196017c..d7d6fa79a4 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -1405,11 +1405,6 @@ to indicate the number of items on the stack.
Sets up the C<ix> variable for an XSUB which has aliases. This is usually
handled automatically by C<xsubpp>.
-=item dXSI32
-
-Sets up the C<ix> variable for an XSUB which has aliases. This is usually
-handled automatically by C<xsubpp>.
-
=item ENTER
Opening bracket on a callback. See C<LEAVE> and L<perlcall>.
@@ -2364,14 +2359,6 @@ C<sv2>.
I32 sv_cmp _((SV* sv1, SV* sv2));
-=item sv_cmp
-
-Compares the strings in two SVs. Returns -1, 0, or 1 indicating whether the
-string in C<sv1> is less than, equal to, or greater than the string in
-C<sv2>.
-
- I32 sv_cmp _((SV* sv1, SV* sv2));
-
=item SvCUR
Returns the length of the string which is in the SV. See C<SvLEN>.
@@ -2390,12 +2377,6 @@ Auto-decrement of the value in the SV.
void sv_dec _((SV* sv));
-=item sv_dec
-
-Auto-decrement of the value in the SV.
-
- void sv_dec _((SV* sv));
-
=item SvEND
Returns a pointer to the last character in the string which is in the SV.
@@ -2453,12 +2434,6 @@ Tells an SV that it is an integer and disables all other OK bits.
SvIOK_on (SV* sv)
-=item SvIOK_only
-
-Tells an SV that it is an integer and disables all other OK bits.
-
- SvIOK_on (SV* sv)
-
=item SvIOKp
Returns a boolean indicating whether the SV contains an integer. Checks the
@@ -2506,12 +2481,6 @@ Returns the length of the string in the SV. Use C<SvCUR>.
STRLEN sv_len _((SV* sv));
-=item sv_len
-
-Returns the length of the string in the SV. Use C<SvCUR>.
-
- STRLEN sv_len _((SV* sv));
-
=item sv_magic
Adds magic to an SV.
@@ -2585,12 +2554,6 @@ Tells an SV that it is a double and disables all other OK bits.
SvNOK_on (SV* sv)
-=item SvNOK_only
-
-Tells an SV that it is a double and disables all other OK bits.
-
- SvNOK_on (SV* sv)
-
=item SvNOKp
Returns a boolean indicating whether the SV contains a double. Checks the
@@ -2634,12 +2597,6 @@ Tells an SV that it is a string and disables all other OK bits.
SvPOK_on (SV* sv)
-=item SvPOK_only
-
-Tells an SV that it is a string and disables all other OK bits.
-
- SvPOK_on (SV* sv)
-
=item SvPOKp
Returns a boolean indicating whether the SV contains a character string.