summaryrefslogtreecommitdiff
path: root/av.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-06-01 19:02:38 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-06-02 07:39:30 +0000
commita0288114f9bfa2566e353eba77114ea63b616631 (patch)
tree8c86c7a2a168301943e790fcdd612b20d47ea300 /av.c
parent1936d2a74fbc35dd0d6862386c9988d92bb8e6e0 (diff)
downloadperl-a0288114f9bfa2566e353eba77114ea63b616631.tar.gz
Quotes fixed, see also perl #36079
Message-ID: <20050602050238.GA4001@petdance.com> p4raw-id: //depot/perl@24666
Diffstat (limited to 'av.c')
-rw-r--r--av.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/av.c b/av.c
index 72018939f9..695ebc7c63 100644
--- a/av.c
+++ b/av.c
@@ -383,7 +383,7 @@ Perl_av_make(pTHX_ register I32 size, register SV **strp)
av = (AV*)NEWSV(8,0);
sv_upgrade((SV *) av,SVt_PVAV);
AvREAL_only(av);
- if (size) { /* `defined' was returning undef for size==0 anyway. */
+ if (size) { /* "defined" was returning undef for size==0 anyway. */
register SV** ary;
register I32 i;
New(4,ary,size,SV*);