From 082da233911659ee0d7f8f9693d16c6cd80d45da Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 25 May 2017 18:02:29 -0500 Subject: [PATCH] One fewer EOL in M503 output --- Marlin/configuration_store.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Marlin/configuration_store.cpp b/Marlin/configuration_store.cpp index 2d2a225793..c39508f50d 100644 --- a/Marlin/configuration_store.cpp +++ b/Marlin/configuration_store.cpp @@ -1344,9 +1344,8 @@ void MarlinSettings::reset() { #else #define LINEAR_UNIT(N) N #define VOLUMETRIC_UNIT(N) N - SERIAL_ECHOLNPGM(" G21 ; Units in mm\n"); + SERIAL_ECHOLNPGM(" G21 ; Units in mm"); #endif - SERIAL_EOL; #if ENABLED(ULTIPANEL) @@ -1361,12 +1360,13 @@ void MarlinSettings::reset() { serialprintPGM(parser.temp_units_name()); #else #define TEMP_UNIT(N) N - SERIAL_ECHOLNPGM(" M149 C ; Units in Celsius\n"); + SERIAL_ECHOLNPGM(" M149 C ; Units in Celsius"); #endif - SERIAL_EOL; #endif + SERIAL_EOL; + /** * Volumetric extrusion M200 */