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 /tmux.h | |
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 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -481,7 +481,7 @@ struct msg_identify_data { #define IDENTIFY_UTF8 0x1 #define IDENTIFY_256COLOURS 0x2 -#define IDENTIFY_88COLOURS 0x4 +/* 0x4 unused */ #define IDENTIFY_CONTROL 0x8 #define IDENTIFY_TERMIOS 0x10 int flags; @@ -1141,8 +1141,7 @@ struct tty_term { struct tty_code codes[NTTYCODE]; #define TERM_256COLOURS 0x1 -#define TERM_88COLOURS 0x2 -#define TERM_EARLYWRAP 0x4 +#define TERM_EARLYWRAP 0x2 int flags; LIST_ENTRY(tty_term) entry; @@ -1986,7 +1985,6 @@ void colour_set_bg(struct grid_cell *, int); const char *colour_tostring(int); int colour_fromstring(const char *); u_char colour_256to16(u_char); -u_char colour_256to88(u_char); /* attributes.c */ const char *attributes_tostring(u_char); |