This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c and more
[perl5.git] / av.c
diff --git a/av.c b/av.c
index 7201893..695ebc7 100644 (file)
--- 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*);