summarylogtreecommitdiffstats
path: root/suppress_color_from_help.patch
diff options
context:
space:
mode:
Diffstat (limited to 'suppress_color_from_help.patch')
-rw-r--r--suppress_color_from_help.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/suppress_color_from_help.patch b/suppress_color_from_help.patch
deleted file mode 100644
index 7cc83c3702b3..000000000000
--- a/suppress_color_from_help.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- errmsg.c 2019-02-16 18:24:54.410110160 +0800
-+++ errmsg.c 2019-02-16 18:22:39.476943887 +0800
-@@ -166,8 +166,8 @@
-
- SetConsoleTextAttribute(hConsole, screenBufferInfo.wAttributes);
- #else
-- printf(FGRN("%s"), MsgGetEx(MSG_UASM));
-- printf(FCYN("%s\n"), MsgGetEx(MSG_UASM2));
-+ printf("%s", MsgGetEx(MSG_UASM));
-+ printf("%s\n", MsgGetEx(MSG_UASM2));
- #endif
-
- return( 4 ); /* return number of lines printed */
-@@ -200,7 +200,7 @@
- #else
- for (p = usage2; *p != '\n'; ) {
- const char *p2 = p + strlen(p) + 1;
-- printf(FYEL("%-20s %s\n"), p, p2);
-+ printf("%-20s %s\n", p, p2);
- p = p2 + strlen(p2) + 1;
- }
- #endif
-@@ -217,7 +217,7 @@
- #else
- for (p = usage; *p != '\n'; ) {
- const char *p2 = p + strlen(p) + 1;
-- printf(FWHT("%-20s %s\n"), p, p2);
-+ printf("%-20s %s\n", p, p2);
- p = p2 + strlen(p2) + 1;
- }
- #endif