projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b7c4429
)
Fix potential precedence problem
Rafael Garcia-Suarez [Tue, 24 Apr 2007 10:35:15 +0000 (10:35 +0000)]
p4raw-id: //depot/perl@31052
op.c
patch
|
blob
|
blame
|
history
diff --git
a/op.c
b/op.c
index
50728a5
..
d623f2b
100644
(file)
--- a/
op.c
+++ b/
op.c
@@
-1300,7
+1300,7
@@
Perl_mod(pTHX_ OP *o, I32 type)
Perl_croak(aTHX_ "That use of $[ is unsupported");
break;
case OP_STUB:
- if (o->op_flags & OPf_PARENS || PL_madskills)
+ if ((o->op_flags & OPf_PARENS) || PL_madskills)
break;
goto nomod;
case OP_ENTERSUB: