summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorChip Salzenberg <chip@pobox.com>2010-07-27 23:42:49 -0700
committerChip Salzenberg <chip@pobox.com>2010-07-27 23:42:49 -0700
commit401a9b146916c60dc9bbd897355c3c83888d61f3 (patch)
tree3080e2ca491a69866a3821e020c384227e97afcc /scope.c
parent109bf713de022d5340396fd57331bb452da6e986 (diff)
downloadperl-401a9b146916c60dc9bbd897355c3c83888d61f3.tar.gz
remove misleading comment about CXINC; it's fine
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scope.c b/scope.c
index 92e952360d..5445da9b72 100644
--- a/scope.c
+++ b/scope.c
@@ -77,7 +77,7 @@ Perl_cxinc(pTHX)
dVAR;
const IV old_max = cxstack_max;
cxstack_max = GROW(cxstack_max);
- Renew(cxstack, cxstack_max + 1, PERL_CONTEXT); /* XXX should fix CXINC macro */
+ Renew(cxstack, cxstack_max + 1, PERL_CONTEXT);
/* Without any kind of initialising deep enough recursion
* will end up reading uninitialised PERL_CONTEXTs. */
PoisonNew(cxstack + old_max + 1, cxstack_max - old_max, PERL_CONTEXT);