From f18f689c01e822e77aac498f9f7b8ec685538228 Mon Sep 17 00:00:00 2001
From: AnHardt <github@kitelab.de>
Date: Thu, 28 May 2015 20:30:23 +0200
Subject: [PATCH] Replace MSG_F? with MSG_N?

To avoid double definitions.
I prefer to read N for Number not for Nozzle.
---
 Marlin/language_cn.h |  6 ++----
 Marlin/language_en.h | 18 ++++++------------
 Marlin/ultralcd.cpp  |  8 ++++----
 3 files changed, 12 insertions(+), 20 deletions(-)

diff --git a/Marlin/language_cn.h b/Marlin/language_cn.h
index 25ab251f84..3f54a2fe86 100644
--- a/Marlin/language_cn.h
+++ b/Marlin/language_cn.h
@@ -50,16 +50,14 @@
   #define MSG_MOVE_10MM                       "\xc1\xb2 10mm"
   #define MSG_SPEED                           "\xd1\xd2"
   #define MSG_NOZZLE                          "\xd3\xd4"
+  #define MSG_N0                              " 0"
+  #define MSG_N1                              " 1"
   #define MSG_N2                              " 2"
   #define MSG_N3                              " 3"
   #define MSG_N4                              " 4"
   #define MSG_BED                             "\xc4\xc7"
   #define MSG_FAN_SPEED                       "\xd5\xd6\xd1\xd2"
   #define MSG_FLOW                            "\xcc\xad\xd1\xd2"
-  #define MSG_F0                              " 0"
-  #define MSG_F1                              " 1"
-  #define MSG_F2                              " 2"
-  #define MSG_F3                              " 3"
   #define MSG_CONTROL                         "\xd8\xd9"
   #define MSG_MIN                             LCD_STR_THERMOMETER " \xda\xdb"
   #define MSG_MAX                             LCD_STR_THERMOMETER " \xda\xdc"
diff --git a/Marlin/language_en.h b/Marlin/language_en.h
index a9619fa3e2..f2ca91beee 100644
--- a/Marlin/language_en.h
+++ b/Marlin/language_en.h
@@ -135,6 +135,12 @@
 #ifndef MSG_NOZZLE
 #define MSG_NOZZLE                          "Nozzle"
 #endif
+#ifndef MSG_N0
+#define MSG_N0                              " 0"
+#endif
+#ifndef MSG_N1
+#define MSG_N1                              " 1"
+#endif
 #ifndef MSG_N2
 #define MSG_N2                              " 2"
 #endif
@@ -153,18 +159,6 @@
 #ifndef MSG_FLOW
 #define MSG_FLOW                            "Flow"
 #endif
-#ifndef MSG_F0
-#define MSG_F0                              " 0"
-#endif
-#ifndef MSG_F1
-#define MSG_F1                              " 1"
-#endif
-#ifndef MSG_F2
-#define MSG_F2                              " 2"
-#endif
-#ifndef MSG_F3
-#define MSG_F3                              " 3"
-#endif
 #ifndef MSG_CONTROL
 #define MSG_CONTROL                         "Control"
 #endif
diff --git a/Marlin/ultralcd.cpp b/Marlin/ultralcd.cpp
index 0668b96102..31bc809ecc 100644
--- a/Marlin/ultralcd.cpp
+++ b/Marlin/ultralcd.cpp
@@ -489,15 +489,15 @@ static void lcd_tune_menu() {
   #endif
   MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
   MENU_ITEM_EDIT(int3, MSG_FLOW, &extruder_multiply[active_extruder], 10, 999);
-  MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F0, &extruder_multiply[0], 10, 999);
+  MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N0, &extruder_multiply[0], 10, 999);
   #if TEMP_SENSOR_1 != 0
-    MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F1, &extruder_multiply[1], 10, 999);
+    MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N1, &extruder_multiply[1], 10, 999);
   #endif
   #if TEMP_SENSOR_2 != 0
-    MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F2, &extruder_multiply[2], 10, 999);
+    MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N2, &extruder_multiply[2], 10, 999);
   #endif
   #if TEMP_SENSOR_3 != 0
-    MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F3, &extruder_multiply[3], 10, 999);
+    MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N3, &extruder_multiply[3], 10, 999);
   #endif
 
   #ifdef BABYSTEPPING
-- 
GitLab