diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2017-03-27 10:48:28 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2017-03-27 10:48:28 +0000 |
| commit | 1370fa3380676f7d545aa221637c15abb3398058 (patch) | |
| tree | 2a8c6c10f6ead61c631ccdecabb8abf3da91bd3f /sys/teken | |
| parent | 759c8caa5a6889ee891b1072f9dd4ada7cccf913 (diff) | |
Notes
Diffstat (limited to 'sys/teken')
| -rw-r--r-- | sys/teken/teken.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/teken/teken.c b/sys/teken/teken.c index 6a9842d538488..5a8177762be8f 100644 --- a/sys/teken/teken.c +++ b/sys/teken/teken.c @@ -491,11 +491,11 @@ teken_state_numbers(teken_t *t, teken_char_t c) * be twice as large as green in (0, 1, 2). */ static const teken_color_t teken_256to8tab[] = { - /* xterm-16+ 8 dark colors: */ - 0, r, g, y, b, m, c, w, + /* xterm normal colors: */ + k, r, g, y, b, m, c, w, - /* xterm-16+ 8 light colors: */ - 0, R, G, Y, B, M, C, W, + /* xterm bright colors: */ + k, r, g, y, b, m, c, w, /* Red0 submap. */ k, b, b, b, b, b, @@ -559,11 +559,11 @@ static const teken_color_t teken_256to8tab[] = { * used for different fine tuning of the tables. */ static const teken_color_t teken_256to16tab[] = { - /* xterm-16+ 8 dark colors: */ - 0, r, g, y, b, m, c, w, + /* xterm normal colors: */ + k, r, g, y, b, m, c, w, - /* xterm-16+ 8 light colors: */ - 0, R, G, Y, B, M, C, W, + /* xterm bright colors: */ + K, R, G, Y, B, M, C, W, /* Red0 submap. */ k, b, b, b, b, b, |
