diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-10-09 22:00:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-10-09 22:00:33 +0000 |
commit | 0ba0fd389c211c35958a383cbaea138f6eebea91 (patch) | |
tree | b50b85185977a0a30d63654fb30bd389af42ebb7 /tmux.h | |
parent | 185f7297e8df1399094b7e3d1314f1af1e94e633 (diff) | |
download | rtmux-0ba0fd389c211c35958a383cbaea138f6eebea91.tar.gz rtmux-0ba0fd389c211c35958a383cbaea138f6eebea91.tar.bz2 rtmux-0ba0fd389c211c35958a383cbaea138f6eebea91.zip |
Translate 256 colours to 16.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.192 2008-10-09 21:22:16 nicm Exp $ */ +/* $Id: tmux.h,v 1.193 2008-10-09 22:00:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1136,6 +1136,7 @@ void input_key(struct window *, int); /* colour.c */ const char *colour_tostring(u_char); u_char colour_fromstring(const char *); +u_char colour_translate256(u_char); /* grid.c */ extern const struct grid_cell grid_default_cell; |