diff options
author | Vincent Pit <perl@profvince.com> | 2007-12-25 18:12:33 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-12-29 23:00:03 +0000 |
commit | 50baa5ea2240b5b5f0f2d876ef7d68fbb74f49e4 (patch) | |
tree | bdcf0394efbbebedbddaca85fade2001391d6270 /op.c | |
parent | 50af2e611e4aecf342d3df7e3a9c906c5174ca05 (diff) | |
download | perl-50baa5ea2240b5b5f0f2d876ef7d68fbb74f49e4.tar.gz |
Typo in op.c
Message-ID: <47712BF1.9060200@profvince.com>
(And then an update to make the tests in gv.t expect the right thing,
and test the behaviour that my change 26482 was originally supposed to
produce, but didn't until this typo was fixed)
p4raw-id: //depot/perl@32779
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8472,7 +8472,7 @@ Perl_peep(pTHX_ register OP *o) UNOP *refgen, *rv2cv; LISTOP *exlist; - if ((o->op_flags && OPf_WANT) != OPf_WANT_VOID) + if ((o->op_flags & OPf_WANT) != OPf_WANT_VOID) break; if ((o->op_private & ~OPpASSIGN_BACKWARDS) != 2) |