diff --git a/src/color.c b/src/color.c index 3f5ae67401c1ffb53bd343df5d58bb4bdd5544fe..a351059dee92ad8c0d4089b21d314eee3f30df9d 100644 --- a/src/color.c +++ b/src/color.c @@ -97,6 +97,9 @@ void set_colorpairs(void) this_color->pairnum = clr_pair; clr_pair++; } + + this_color->attributes = COLOR_PAIR(this_color->pairnum) | + (this_color->bright ? A_BOLD : A_NORMAL); } } } diff --git a/src/nano.h b/src/nano.h index ff880d8d754b94993492e43cece80891d32fe339..ddab2a99bb0820ffa7b28acd51efd4b475482b8e 100644 --- a/src/nano.h +++ b/src/nano.h @@ -210,6 +210,8 @@ typedef struct colortype { int pairnum; /* The color pair number used for this foreground color and * background color. */ + int attributes; + /* Pair number and brightness composed into ready-to-use attributes. */ int rex_flags; /* The regex compilation flags (with or without REG_ICASE). */ char *start_regex; diff --git a/src/winio.c b/src/winio.c index b0fbd2457ba95d2745180e42b8751af1b063ab75..800e1b9fe201163171a1cd25b4ca3c3ff3a34e01 100644 --- a/src/winio.c +++ b/src/winio.c @@ -2265,9 +2265,7 @@ void edit_draw(filestruct *fileptr, const char *converted, int regmatch_t endmatch; /* Match position for end_regex. */ - if (varnish->bright) - wattron(edit, A_BOLD); - wattron(edit, COLOR_PAIR(varnish->pairnum)); + wattron(edit, varnish->attributes); /* Two notes about regexec(). A return value of zero means * that there is a match. Also, rm_eo is the first * non-matching character after the match. */ @@ -2524,8 +2522,7 @@ void edit_draw(filestruct *fileptr, const char *converted, int } } tail_of_loop: - wattroff(edit, A_BOLD); - wattroff(edit, COLOR_PAIR(varnish->pairnum)); + wattroff(edit, varnish->attributes); } } #endif /* !DISABLE_COLOR */