Browse Source

Minor formatting in queue.cpp

Scott Lahteine 7 years ago
parent
commit
09c8807a36
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/gcode/queue.cpp

+ 2
- 2
Marlin/src/gcode/queue.cpp View File

358
         }
358
         }
359
 
359
 
360
         #if DISABLED(EMERGENCY_PARSER)
360
         #if DISABLED(EMERGENCY_PARSER)
361
-          // If command was e-stop process now
361
+          // Process critical commands early
362
           if (strcmp(command, "M108") == 0) {
362
           if (strcmp(command, "M108") == 0) {
363
             wait_for_heatup = false;
363
             wait_for_heatup = false;
364
             #if ENABLED(ULTIPANEL)
364
             #if ENABLED(ULTIPANEL)
366
             #endif
366
             #endif
367
           }
367
           }
368
           if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
368
           if (strcmp(command, "M112") == 0) kill(PSTR(MSG_KILLED));
369
-          if (strcmp(command, "M410") == 0) { quickstop_stepper(); }
369
+          if (strcmp(command, "M410") == 0) quickstop_stepper();
370
         #endif
370
         #endif
371
 
371
 
372
         #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0
372
         #if defined(NO_TIMEOUTS) && NO_TIMEOUTS > 0

Loading…
Cancel
Save