From 40e76149ab4b067ad21df60598355896c3fcc239 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 12 Jan 2003 04:48:23 +0000 Subject: [PATCH] * Display message subjects in magenta instead of white --- citadel/ChangeLog | 4 ++++ citadel/commands.c | 1 - citadel/messages.c | 7 +++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/citadel/ChangeLog b/citadel/ChangeLog index c8752996c..a095dcdf6 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -1,4 +1,7 @@ $Log$ + Revision 601.103 2003/01/12 04:48:23 ajc + * Display message subjects in magenta instead of white + Revision 601.102 2003/01/06 09:17:10 error * Remove non (yet) existent sstring.c dependency from Makefile.in @@ -4352,3 +4355,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant Fri Jul 10 1998 Art Cancro * Initial CVS import + diff --git a/citadel/commands.c b/citadel/commands.c index 795a8289f..c6d71a828 100644 --- a/citadel/commands.c +++ b/citadel/commands.c @@ -1286,7 +1286,6 @@ int fmout( char old = 0; /* The previous character */ int column = 0; /* Current column */ size_t i; /* Generic counter */ - size_t g = 0; num_urls = 0; /* Start with a clean slate of embedded URL's */ diff --git a/citadel/messages.c b/citadel/messages.c index b733f5feb..21af67c64 100644 --- a/citadel/messages.c +++ b/citadel/messages.c @@ -539,8 +539,6 @@ int read_message(CtdlIPC *ipc, message->author, message->node); } - if (pagin == 1 && !dest) - color(BRIGHT_WHITE); if (!dest) { ++lines_printed; lines_printed = checkpagin(lines_printed, pagin, screenheight); @@ -554,6 +552,7 @@ int read_message(CtdlIPC *ipc, fprintf(dest, "Subject: %s\n", message->subject); } else { + color(BRIGHT_MAGENTA); scr_printf("Subject: %s\n", message->subject); ++lines_printed; lines_printed = checkpagin(lines_printed, @@ -562,6 +561,10 @@ int read_message(CtdlIPC *ipc, } } + if (pagin == 1 && !dest) { + color(BRIGHT_WHITE); + } + /******* end of header output, start of message text output *******/ /* -- 2.39.2