]> code.citadel.org Git - citadel.git/commitdiff
Bold colours
authorArt Cancro <ajc@citadel.org>
Sat, 13 Mar 1999 18:54:02 +0000 (18:54 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 13 Mar 1999 18:54:02 +0000 (18:54 +0000)
citadel/commands.c

index e68c4436ca43c47f831b7e7f824b50410dcc685c..2a5bd73d4ec291b64b0a2d974f391300c0ef2c8f 100644 (file)
@@ -931,7 +931,11 @@ void color(int colornum)
 void cls(int colornum) {
        if (enable_color) {
                printf("\033[4%dm\033[2J\033[H", colornum);
-               printf("\033[0m"); /* change to 1 for bold colours */
+
+               printf("\033[1m");              /* bold colors */
+               /* printf("\033[0m"); */        /* non-bold colors */
+
+
                fflush(stdout);
                }
        }