diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-07-03 01:55:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-03 01:55:09 -0400 |
commit | c402f6e7a9135490a9f05e4cac733e41c6815b2d (patch) | |
tree | 9e90c402b768cbd2bf013447d84ebcba19b79c08 /src/nvim/option.c | |
parent | f80eb768c75de2065626203de001738e1dda436e (diff) | |
parent | 173d366a5b0b5f0784a1da8aef4fe5d0cab7e1ec (diff) | |
download | rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.tar.gz rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.tar.bz2 rneovim-c402f6e7a9135490a9f05e4cac733e41c6815b2d.zip |
Merge #5001 from justinmk/t_colors
TUI: infer 256 colors more liberally; listen to unibilium in other cases
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 020a119fd3..a844c4ed80 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -4404,6 +4404,7 @@ bool get_tty_option(char *name, char **value) if (is_tty_option(name)) { if (value) { + // XXX: All other t_* options were removed in 3baba1e7. *value = xstrdup(""); } return true; |