projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e550c04
)
When you write C<my $_ ; for (...) {...}>, the lexical $_
Rafael Garcia-Suarez [Fri, 20 Feb 2004 17:29:32 +0000 (17:29 +0000)]
is not actually introduced by the for statement.
p4raw-id: //depot/perl@22352
op.c
patch
|
blob
|
blame
|
history
diff --git
a/op.c
b/op.c
index
bed697d
..
add8cc9
100644
(file)
--- a/
op.c
+++ b/
op.c
@@
-3724,7
+3724,6
@@
Perl_newFOROP(pTHX_ I32 flags,char *label,line_t forline,OP *sv,OP *expr,OP *blo
}
else {
padoff = offset;
- iterpflags = OPpLVAL_INTRO; /* my $_; for () */
}
}
if (expr->op_type == OP_RV2AV || expr->op_type == OP_PADAV) {