From e01081d5b30f2036e0aba01c74803fa1985c69ab Mon Sep 17 00:00:00 2001 From: Joel Low Date: Thu, 20 Feb 2014 07:56:51 +0800 Subject: [PATCH] Restore the message that displays when the debuggee starts. --- Ocaml/src/ocaml/debugging/OcamlDebugger.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ocaml/src/ocaml/debugging/OcamlDebugger.java b/Ocaml/src/ocaml/debugging/OcamlDebugger.java index 9f34936..0fa4894 100644 --- a/Ocaml/src/ocaml/debugging/OcamlDebugger.java +++ b/Ocaml/src/ocaml/debugging/OcamlDebugger.java @@ -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();