Minor process_subcommands_now followup
This commit is contained in:
parent
50a6ffa952
commit
22fc59ab59
|
@ -1049,8 +1049,8 @@ void GcodeSuite::process_subcommands_now(char * gcode) {
|
||||||
if (delim) *delim = '\0'; // Replace with nul
|
if (delim) *delim = '\0'; // Replace with nul
|
||||||
parser.parse(gcode); // Parse the current command
|
parser.parse(gcode); // Parse the current command
|
||||||
process_parsed_command(true); // Process it
|
process_parsed_command(true); // Process it
|
||||||
if (delim) *delim = '\n'; // Put back the newline
|
|
||||||
if (!delim) break; // Last command?
|
if (!delim) break; // Last command?
|
||||||
|
*delim = '\n'; // Put back the newline
|
||||||
gcode = delim + 1; // Get the next command
|
gcode = delim + 1; // Get the next command
|
||||||
}
|
}
|
||||||
parser.parse(saved_cmd); // Restore the parser state
|
parser.parse(saved_cmd); // Restore the parser state
|
||||||
|
|
Loading…
Reference in a new issue