summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-10-09 22:00:33 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-10-09 22:00:33 +0000
commit0ba0fd389c211c35958a383cbaea138f6eebea91 (patch)
treeb50b85185977a0a30d63654fb30bd389af42ebb7 /tmux.h
parent185f7297e8df1399094b7e3d1314f1af1e94e633 (diff)
Translate 256 colours to 16.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index a1d48698..cd95fb9f 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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;