X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FPeek.pm;h=8e772eec7676edce4608f0b59bffcd1954960031;hp=f9bb3ed8e44ea85fa7ba406febfb3bac44142a39;hb=213b6e768d5a81a0c9e37eabde0d5d352b49db72;hpb=3d22167c1a074925fcfc1d69b31b4d27b358195e diff --git a/lib/Devel/REPL/Plugin/Peek.pm b/lib/Devel/REPL/Plugin/Peek.pm index f9bb3ed..8e772ee 100644 --- a/lib/Devel/REPL/Plugin/Peek.pm +++ b/lib/Devel/REPL/Plugin/Peek.pm @@ -12,11 +12,16 @@ with qw(Devel::REPL::Plugin::Turtles); sub expr_command_peek { my ( $self, $eval, $code ) = @_; - # can't override output properly - # FIXME do some dup wizardry - Dump( $self->eval($code) ); - - return ""; # this is a hack to print nothing after Dump has already printed. PLZ TO FIX KTHX! + my @res = $self->eval($code); + + if ( $self->is_error(@res) ) { + return $self->format(@res); + } else { + # can't override output properly + # FIXME do some dup wizardry + Dump(@res); + return ""; # this is a hack to print nothing after Dump has already printed. PLZ TO FIX KTHX! + } } __PACKAGE__