projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b708784
)
Fix a bug in dor assignment (@x //= 1 was triggering an
Rafael Garcia-Suarez [Tue, 24 Apr 2007 10:32:33 +0000 (10:32 +0000)]
assertion failure)
p4raw-id: //depot/perl@31050
op.c
patch
|
blob
|
blame
|
history
diff --git
a/op.c
b/op.c
index
8cf8cd9
..
50728a5
100644
(file)
--- a/
op.c
+++ b/
op.c
@@
-1649,6
+1649,7
@@
S_scalar_mod_type(const OP *o, I32 type)
case OP_RECV:
case OP_ANDASSIGN:
case OP_ORASSIGN:
+ case OP_DORASSIGN:
return TRUE;
default:
return FALSE;