This commit is contained in:
krakjoe 2013-11-30 00:29:16 +00:00
parent b6de073b00
commit 8963bbe26a

View file

@ -88,9 +88,9 @@ public class DebugSocket implements Runnable {
/* send command to stdin socket */
if (command != null) {
if (main.isEchoing()) {
main.getOutputField().appendANSI("remote> ");
main.getOutputField().appendANSI(command);
main.getOutputField().appendANSI("\n");
main.getOutputField()
.appendANSI(
String.format("remote> %s\n", command));
}
output.write(
command.getBytes());