diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-29 14:51:32 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-29 14:51:32 +0000 |
commit | 5abc721d638ff51bc38a83a3846d0b034cac3761 (patch) | |
tree | 8fa94f8cb8a8ed14abd7a964f78db7444859991f /proto.h | |
parent | 174c73e345a053498d612e92802b2f52a87c26bc (diff) | |
download | perl-5abc721d638ff51bc38a83a3846d0b034cac3761.tar.gz |
Replace sv_force_normal with a macro that calls sv_force_normal_flags.
p4raw-id: //depot/perl@25879
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2630,8 +2630,8 @@ PERL_CALLCONV void Perl_sv_utf8_encode(pTHX_ SV *sv) PERL_CALLCONV bool Perl_sv_utf8_decode(pTHX_ SV *sv) __attribute__nonnull__(pTHX_1); -PERL_CALLCONV void Perl_sv_force_normal(pTHX_ SV *sv) - __attribute__nonnull__(pTHX_1); +/* PERL_CALLCONV void Perl_sv_force_normal(pTHX_ SV *sv) + __attribute__nonnull__(pTHX_1); */ PERL_CALLCONV void Perl_sv_force_normal_flags(pTHX_ SV *sv, U32 flags) __attribute__nonnull__(pTHX_1); |