This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Synchronise the opname regexp with blead.
authorNicholas Clark <nick@ccl4.org>
Thu, 9 Sep 2004 15:44:32 +0000 (15:44 +0000)
committerNicholas Clark <nick@ccl4.org>
Thu, 9 Sep 2004 15:44:32 +0000 (15:44 +0000)
(No harm in including dor, as nothing in maint will generate that)

p4raw-id: //depot/maint-5.8/perl@23299

ext/B/B.pm

index 8f47261..5c9b250 100644 (file)
@@ -177,7 +177,7 @@ sub walkoptree_exec {
        $op->$method($level);
        $ppname = $op->name;
        if ($ppname =~
-           /^(or(assign)?|and(assign)?|mapwhile|grepwhile|entertry|range|cond_expr)$/)
+           /^(d?or(assign)?|and(assign)?|mapwhile|grepwhile|entertry|range|cond_expr)$/)
        {
            print $prefix, uc($1), " => {\n";
            walkoptree_exec($op->other, $method, $level + 1);