From 86083badc2e1ee48874028adcab9e9df4ed18d28 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Fri, 22 May 2015 17:32:27 -0700 Subject: [PATCH] Indent G4, G10/G11, G28 --- Marlin/Marlin_main.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 57a077f3a..039fe4638 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -5241,23 +5241,23 @@ void process_next_command() { break; #endif - // G4 Dwell - case 4: - gcode_G4(); - break; - - #ifdef FWRETRACT - - case 10: // G10: retract - case 11: // G11: retract_recover - gcode_G10_G11(codenum == 10); + // G4 Dwell + case 4: + gcode_G4(); break; - #endif //FWRETRACT + #ifdef FWRETRACT - case 28: // G28: Home all axes, one at a time - gcode_G28(); - break; + case 10: // G10: retract + case 11: // G11: retract_recover + gcode_G10_G11(codenum == 10); + break; + + #endif //FWRETRACT + + case 28: // G28: Home all axes, one at a time + gcode_G28(); + break; #if defined(ENABLE_AUTO_BED_LEVELING) || defined(MESH_BED_LEVELING) case 29: // G29 Detailed Z-Probe, probes the bed at 3 or more points.