From c53941b4d2269daacec193419928404af8dcae8b Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Fri, 16 Jan 2009 15:17:54 +0100 Subject: [PATCH] Fix deparsing of readpipe() ([perl #62428]) --- ext/B/B/Deparse.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/B/B/Deparse.pm b/ext/B/B/Deparse.pm index 266473d..753192d 100644 --- a/ext/B/B/Deparse.pm +++ b/ext/B/B/Deparse.pm @@ -3821,7 +3821,7 @@ sub pp_backtick { my($op, $cx) = @_; # skip pushmark if it exists (readpipe() vs ``) my $child = $op->first->sibling->isa('B::NULL') - ? $op->first->first : $op->first->sibling; + ? $op->first : $op->first->sibling; return single_delim("qx", '`', $self->dq($child)); } -- 2.7.4