Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove workaround that's no longer needed.
  • Loading branch information
jnthn committed Jun 5, 2013
1 parent 857a884 commit 17cdb70
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions lib/Debugger/UI/CommandLine.pm
Expand Up @@ -398,16 +398,6 @@ my class DebugState {
'Cannot continue execution after an unhandled exception',
'red');
}

sub prompt($msg) {
print $msg;
$*OUT.flush();
join "", gather loop {
my $c = $*IN.getc;
last if $c eq "\n";
take $c unless $c eq "\r";
}
}

method issue_prompt($ctx, $cur_file, $from = 0, $to = 0) {
ENTER $in_prompt = True;
Expand Down

0 comments on commit 17cdb70

Please sign in to comment.