diff options
author | Steve Hay <SteveHay@planit.com> | 2005-07-12 08:17:47 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-07-12 08:17:47 +0000 |
commit | 9f653bb54868b8547466924d4ce483acb8987efb (patch) | |
tree | c335772e50d2eb91b883f81f1636d76603814bb2 /sv.c | |
parent | c5008215525f2f0a2a10a4c6a997f4cccfb6d09b (diff) | |
download | perl-9f653bb54868b8547466924d4ce483acb8987efb.tar.gz |
Change New*() to Newx*() in various comments and documentation
p4raw-id: //depot/perl@25116
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4577,7 +4577,7 @@ Perl_sv_force_normal_flags(pTHX_ register SV *sv, U32 flags) } SvFAKE_off(sv); SvREADONLY_off(sv); - /* This SV doesn't own the buffer, so need to New() a new one: */ + /* This SV doesn't own the buffer, so need to Newx() a new one: */ SvPV_set(sv, (char*)0); SvLEN_set(sv, 0); if (flags & SV_COW_DROP_PV) { |