in reply to $/ breaks debugger

It seems that Devel::ebug talks over a socket and the socket code is (line 141 in Backend.pm):

my $data = $context->{socket}->getline;

This is a normal IO::Socket::INET, so likely, adding the proper local $/= "\n"; before that line will fix your issue. You should report this as a bug in Devel::ebug.

Replies are listed 'Best First'.
Re^2: $/ breaks debugger
by Anonymous Monk on Nov 18, 2014 at 11:59 UTC
    That fixes it, thank you very much :)
    You should report this as a bug in Devel::ebug.
    Will do