|
@@ -770,7 +770,8 @@ bool enqueue_and_echo_command(const char* cmd, bool say_ok/*=false*/) {
|
770
|
770
|
if (_enqueuecommand(cmd, say_ok)) {
|
771
|
771
|
SERIAL_ECHO_START;
|
772
|
772
|
SERIAL_ECHOPAIR(MSG_Enqueueing, cmd);
|
773
|
|
- SERIAL_ECHOLNPGM("\"");
|
|
773
|
+ SERIAL_CHAR('"');
|
|
774
|
+ SERIAL_EOL;
|
774
|
775
|
return true;
|
775
|
776
|
}
|
776
|
777
|
return false;
|
|
@@ -2648,7 +2649,8 @@ void gcode_get_destination() {
|
2648
|
2649
|
void unknown_command_error() {
|
2649
|
2650
|
SERIAL_ECHO_START;
|
2650
|
2651
|
SERIAL_ECHOPAIR(MSG_UNKNOWN_COMMAND, current_command);
|
2651
|
|
- SERIAL_ECHOLNPGM("\"");
|
|
2652
|
+ SERIAL_CHAR('"');
|
|
2653
|
+ SERIAL_EOL;
|
2652
|
2654
|
}
|
2653
|
2655
|
|
2654
|
2656
|
#if ENABLED(HOST_KEEPALIVE_FEATURE)
|