diff options
author | nicm <nicm> | 2017-06-04 08:02:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-06-04 08:02:20 +0000 |
commit | 184039044a92b83f38b880b0a4a1c5ebc272af9c (patch) | |
tree | cb60ee35ca9904961de3d6b1029bba29ad2c33cd /tty.c | |
parent | 34420660545611af1b24060f55551ebe90d67a0c (diff) | |
download | rtmux-184039044a92b83f38b880b0a4a1c5ebc272af9c.tar.gz rtmux-184039044a92b83f38b880b0a4a1c5ebc272af9c.tar.bz2 rtmux-184039044a92b83f38b880b0a4a1c5ebc272af9c.zip |
Typo/style; plus man page escaping from jmc.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1848,7 +1848,7 @@ tty_check_fg(struct tty *tty, const struct window_pane *wp, */ if (~gc->flags & GRID_FLAG_NOPALETTE) { c = gc->fg; - if (gc->fg < 8 && gc->attr & GRID_ATTR_BRIGHT) + if (c < 8 && gc->attr & GRID_ATTR_BRIGHT) c += 90; if ((c = window_pane_get_palette(wp, c)) != -1) gc->fg = c; |