1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 12:13:02 +02:00
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());