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 */ /* send command to stdin socket */
if (command != null) { if (command != null) {
if (main.isEchoing()) { if (main.isEchoing()) {
main.getOutputField().appendANSI("remote> "); main.getOutputField()
main.getOutputField().appendANSI(command); .appendANSI(
main.getOutputField().appendANSI("\n"); String.format("remote> %s\n", command));
} }
output.write( output.write(
command.getBytes()); command.getBytes());