Skip to content

Commit

Permalink
Restore the message that displays when the debuggee starts.
Browse files Browse the repository at this point in the history
  • Loading branch information
lowjoel committed Feb 20, 2014
1 parent 20d68c8 commit e01081d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ocaml/src/ocaml/debugging/OcamlDebugger.java
Original file line number Diff line number Diff line change
Expand Up @@ -820,11 +820,11 @@ public void run() {
strippedOutput = output.substring(0, lastEolIndex);
message(strippedOutput);
}
processMessage(output);
debuggerOutput.setLength(0);
if (remoteDebugEnable)
remoteConnectionRequestDialog.signalRemoteProcessConnected();
showPerspective(OcamlDebugPerspective.ID);
state = State.Idle;
} else if (state.equals(State.Restarting)) {
debuggerOutput.setLength(0);
DebugMarkers.getInstance().clearCurrentPosition();
Expand Down

1 comment on commit e01081d

@db4
Copy link

@db4 db4 commented on e01081d May 25, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit breaks "Script file to execute in the debugger" feature (state == State.Starting3a)

Please sign in to comment.