summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-12-26 23:27:46 +0100
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-12-26 23:28:07 +0100
commitf08e0584288c021de71ecd212ba86a45c8f96a5b (patch)
tree1c913a12f52162921f0d248d2630a0dc98a23930
parent42bde815c4743d7e164d2e70c98a6b86a79906b9 (diff)
downloadperl-f08e0584288c021de71ecd212ba86a45c8f96a5b.tar.gz
Regen docs and headers
Necessary after change fe749c9aa803ce74d997ff797103481a55741837
-rw-r--r--global.sym1
-rw-r--r--pod/perlapi.pod18
-rw-r--r--proto.h5
3 files changed, 20 insertions, 4 deletions
diff --git a/global.sym b/global.sym
index fe26578fb3..9598d52cb8 100644
--- a/global.sym
+++ b/global.sym
@@ -663,6 +663,7 @@ Perl_sv_pv
Perl_sv_pvutf8
Perl_sv_pvbyte
Perl_sv_utf8_upgrade
+Perl_sv_utf8_upgrade_nomg
Perl_sv_utf8_downgrade
Perl_sv_utf8_encode
Perl_sv_utf8_decode
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index 3fb77545fb..8c3e6d6bb6 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -4091,7 +4091,7 @@ Found in file sv.h
X<SvIOKp>
Returns a U32 value indicating whether the SV contains an integer. Checks
-the B<private> setting. Use C<SvIOK>.
+the B<private> setting. Use C<SvIOK> instead.
U32 SvIOKp(SV* sv)
@@ -4284,7 +4284,7 @@ Found in file sv.h
X<SvNIOKp>
Returns a U32 value indicating whether the SV contains a number, integer or
-double. Checks the B<private> setting. Use C<SvNIOK>.
+double. Checks the B<private> setting. Use C<SvNIOK> instead.
U32 SvNIOKp(SV* sv)
@@ -4315,7 +4315,7 @@ Found in file sv.h
X<SvNOKp>
Returns a U32 value indicating whether the SV contains a double. Checks the
-B<private> setting. Use C<SvNOK>.
+B<private> setting. Use C<SvNOK> instead.
U32 SvNOKp(SV* sv)
@@ -4451,7 +4451,7 @@ Found in file sv.h
X<SvPOKp>
Returns a U32 value indicating whether the SV contains a character string.
-Checks the B<private> setting. Use C<SvPOK>.
+Checks the B<private> setting. Use C<SvPOK> instead.
U32 SvPOKp(SV* sv)
@@ -6544,6 +6544,16 @@ use the Encode extension for that.
=for hackers
Found in file sv.c
+=item sv_utf8_upgrade_nomg
+X<sv_utf8_upgrade_nomg>
+
+Like sv_utf8_upgrade, but doesn't do magic on C<sv>
+
+ STRLEN sv_utf8_upgrade_nomg(SV *sv)
+
+=for hackers
+Found in file sv.c
+
=item sv_vcatpvf
X<sv_vcatpvf>
diff --git a/proto.h b/proto.h
index 3ec32c5dd2..06e305b5b9 100644
--- a/proto.h
+++ b/proto.h
@@ -3969,6 +3969,11 @@ PERL_CALLCONV void Perl_reginitcolors(pTHX);
#define PERL_ARGS_ASSERT_SV_UTF8_UPGRADE \
assert(sv)
+/* PERL_CALLCONV STRLEN Perl_sv_utf8_upgrade_nomg(pTHX_ SV *sv)
+ __attribute__nonnull__(pTHX_1); */
+#define PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_NOMG \
+ assert(sv)
+
PERL_CALLCONV bool Perl_sv_utf8_downgrade(pTHX_ SV *const sv, const bool fail_ok)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE \