]> code.citadel.org Git - citadel.git/blobdiff - textclient/commands.c
Blockquotes are now rendered to console as dim instead of italic
[citadel.git] / textclient / commands.c
index 197fe1a9d58dca65c9759838b33bac880fbdb766..cf3576d878eb6c3f7b21e051c656dfd20490aee6 100644 (file)
@@ -4,7 +4,7 @@
 // Copyright (c) 1987-2022 by the citadel.org team
 //
 // This program is open source software.  Use, duplication, and/or
-// disclosure are subject to the GNU General Purpose License version 3.
+// disclosure is subject to the GNU General Purpose License version 3.
 //
 // This program is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -1437,9 +1437,9 @@ int fmout(int width,              // screen width to use
                        continue;
                }
 
-               if ( (in_quote) && (*e == '\n') && (enable_color) ) {
+               if ((in_quote) && (*e == '\n') && (enable_color)) {
                        in_quote = 0;
-                       scr_printf("\033[22m\033[23m");
+                       scr_printf("\033[22m\033[22m");
                }
 
                if (*e == '\n') {       // newline?
@@ -1466,9 +1466,9 @@ int fmout(int width,              // screen width to use
                        continue;
                }
 
-               if ( (*e == '>') && (column <= 1) && (!fpout) && (enable_color) ) {
+               if ((*e == '>') && (column <= 1) && (!fpout) && (enable_color)) {
                        in_quote = 1;
-                       scr_printf("\033[2m\033[3m");
+                       scr_printf("\033[2m\033[2m");
                }
 
                // Or are we looking at a space?