Typo/style; plus man page escaping from jmc.

This commit is contained in:
nicm
2017-06-04 08:02:20 +00:00
parent 3442066054
commit 184039044a
3 changed files with 4 additions and 4 deletions

2
tty.c
View File

@ -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;