This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Regen docs and headers
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Fri, 26 Dec 2008 22:27:46 +0000 (23:27 +0100)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Fri, 26 Dec 2008 22:28:07 +0000 (23:28 +0100)
Necessary after change fe749c9aa803ce74d997ff797103481a55741837

global.sym
pod/perlapi.pod
proto.h

index fe26578..9598d52 100644 (file)
@@ -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
index 3fb7754..8c3e6d6 100644 (file)
@@ -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 3ec32c5..06e305b 100644 (file)
--- 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     \