diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-27 11:17:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-27 11:17:12 +0000 |
commit | 982354765bc6f0bfb225d7c1f96e5b73f9880533 (patch) | |
tree | 65e4b218d7ed2409f6d093d43e79b7eb10a383f7 /tty-term.c | |
parent | dfac36b6c3d72ac3732ec2c638b8bae16d1a01ae (diff) | |
download | rtmux-982354765bc6f0bfb225d7c1f96e5b73f9880533.tar.gz rtmux-982354765bc6f0bfb225d7c1f96e5b73f9880533.tar.bz2 rtmux-982354765bc6f0bfb225d7c1f96e5b73f9880533.zip |
Remove tmux's (already minimal) 88 colour support. Such terminals are
few and unnecessary.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -404,11 +404,9 @@ tty_term_find(char *name, int fd, const char *overrides, char **cause) goto error; } - /* Figure out if we have 256 or 88 colours. */ + /* Figure out if we have 256. */ if (tty_term_number(term, TTYC_COLORS) == 256) term->flags |= TERM_256COLOURS; - if (tty_term_number(term, TTYC_COLORS) == 88) - term->flags |= TERM_88COLOURS; /* * Terminals without xenl (eat newline glitch) wrap at at $COLUMNS - 1 |