1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

/SET hide_mirc_colors - patch by paul@raade.org

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2218 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-12-07 22:46:09 +00:00 committed by cras
parent 0f29e57c14
commit 9b08e5c640
2 changed files with 6 additions and 4 deletions

View File

@ -161,6 +161,7 @@ void fe_common_core_init(void)
settings_add_bool("lookandfeel", "beep_when_away", TRUE);
settings_add_bool("lookandfeel", "hide_text_style", FALSE);
settings_add_bool("lookandfeel", "hide_mirc_colors", FALSE);
settings_add_bool("lookandfeel", "hide_server_tags", FALSE);
settings_add_bool("lookandfeel", "use_status_window", TRUE);

View File

@ -37,7 +37,7 @@ static const char *format_fores = "kbgcrmyw";
static const char *format_boldfores = "KBGCRMYW";
static int signal_gui_print_text;
static int hide_text_style, hide_server_tags;
static int hide_text_style, hide_server_tags, hide_mirc_colors;
static int timestamps, msgs_timestamps;
static int timestamp_timeout;
@ -940,9 +940,9 @@ void format_send_to_gui(TEXT_DEST_REC *dest, const char *text)
case 3:
/* MIRC color */
get_mirc_color((const char **) &ptr,
hide_text_style ? NULL : &fgcolor,
hide_text_style ? NULL : &bgcolor);
if (!hide_text_style)
hide_mirc_colors || hide_text_style ? NULL : &fgcolor,
hide_mirc_colors || hide_text_style ? NULL : &bgcolor);
if (!hide_mirc_colors || !hide_text_style)
flags |= GUI_PRINT_FLAG_MIRC_COLOR;
break;
case 4:
@ -1051,6 +1051,7 @@ static void read_settings(void)
timestamps = settings_get_bool("timestamps");
timestamp_timeout = settings_get_int("timestamp_timeout");
msgs_timestamps = settings_get_bool("msgs_timestamps");
hide_mirc_colors = settings_get_bool("hide_mirc_colors");
}
void formats_init(void)