diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-12-14 21:33:38 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-12-14 21:33:38 +0000 |
commit | 0dda866679009385d4973d18a123943f606c49ad (patch) | |
tree | b36f136aafdf6be666cb7b6a14bb7ec5b599aa59 /input.c | |
parent | 84d2e6c8a0f7c501c3d326eb2bcbbbd8caa1658b (diff) | |
download | rtmux-0dda866679009385d4973d18a123943f606c49ad.tar.gz rtmux-0dda866679009385d4973d18a123943f606c49ad.tar.bz2 rtmux-0dda866679009385d4973d18a123943f606c49ad.zip |
Pass through the aixterm bright colours if the terminal supports them (>= 16
colours).
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1481,8 +1481,7 @@ input_handle_sequence_sgr(struct input_ctx *ictx) case 95: case 96: case 97: - gc->flags |= GRID_FLAG_FG256; - gc->fg = m - 82; + gc->fg = m; break; case 100: case 101: @@ -1492,8 +1491,7 @@ input_handle_sequence_sgr(struct input_ctx *ictx) case 105: case 106: case 107: - gc->flags |= GRID_FLAG_BG256; - gc->bg = m - 92; + gc->bg = m; break; } } |