1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-27 05:20:20 -04:00

Change that should have been committed already

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1931 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-10-28 22:06:07 +00:00 committed by cras
parent 20e1de5ae1
commit 0229a2bd84

View File

@ -14,7 +14,7 @@
#define terminfo_set_bold() current_term->set_bold(current_term) #define terminfo_set_bold() current_term->set_bold(current_term)
#define terminfo_set_uline(set) current_term->set_uline(current_term, set) #define terminfo_set_uline(set) current_term->set_uline(current_term, set)
#define terminfo_set_standout(set) current_term->set_standout(current_term, set) #define terminfo_set_standout(set) current_term->set_standout(current_term, set)
#define terminfo_has_colors(term) (term->TI_fg[0] != NULL) #define terminfo_is_colors_set(term) (term->TI_fg[0] != NULL)
#define terminfo_beep(term) current_term->beep(current_term) #define terminfo_beep(term) current_term->beep(current_term)
typedef struct _TERM_REC TERM_REC; typedef struct _TERM_REC TERM_REC;
@ -62,6 +62,7 @@ struct _TERM_REC {
const char *TI_el; const char *TI_el;
/* Colors */ /* Colors */
int has_colors;
const char *TI_sgr0; /* turn off all attributes */ const char *TI_sgr0; /* turn off all attributes */
const char *TI_smul, *TI_rmul; /* underline on/off */ const char *TI_smul, *TI_rmul; /* underline on/off */
const char *TI_smso, *TI_rmso; /* standout on/off */ const char *TI_smso, *TI_rmso; /* standout on/off */