mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
...
This commit is contained in:
parent
b6de073b00
commit
8963bbe26a
1 changed files with 3 additions and 3 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue