From: Rafael Garcia-Suarez Date: Fri, 26 Dec 2008 22:27:46 +0000 (+0100) Subject: Regen docs and headers X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f08e0584288c021de71ecd212ba86a45c8f96a5b;p=p5sagit%2Fp5-mst-13.2.git Regen docs and headers Necessary after change fe749c9aa803ce74d997ff797103481a55741837 --- diff --git a/global.sym b/global.sym index fe26578..9598d52 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 3fb7754..8c3e6d6 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -4091,7 +4091,7 @@ Found in file sv.h X Returns a U32 value indicating whether the SV contains an integer. Checks -the B setting. Use C. +the B setting. Use C instead. U32 SvIOKp(SV* sv) @@ -4284,7 +4284,7 @@ Found in file sv.h X Returns a U32 value indicating whether the SV contains a number, integer or -double. Checks the B setting. Use C. +double. Checks the B setting. Use C instead. U32 SvNIOKp(SV* sv) @@ -4315,7 +4315,7 @@ Found in file sv.h X Returns a U32 value indicating whether the SV contains a double. Checks the -B setting. Use C. +B setting. Use C instead. U32 SvNOKp(SV* sv) @@ -4451,7 +4451,7 @@ Found in file sv.h X Returns a U32 value indicating whether the SV contains a character string. -Checks the B setting. Use C. +Checks the B setting. Use C 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 + +Like sv_utf8_upgrade, but doesn't do magic on C + + STRLEN sv_utf8_upgrade_nomg(SV *sv) + +=for hackers +Found in file sv.c + =item sv_vcatpvf X diff --git a/proto.h b/proto.h index 3ec32c5..06e305b 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 \