diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-09-11 14:13:52 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-09-11 14:13:52 +0000 |
commit | 0ec1ce005c98f4fa1813cf47e4bcc11d8cd4b523 (patch) | |
tree | 91a9f9bb7432bfaeb28b0be6c5280582b045181d /tmux.h | |
parent | f0cb57d8ac1a342c862320e30728ae2c1ea556aa (diff) | |
download | rtmux-0ec1ce005c98f4fa1813cf47e4bcc11d8cd4b523.tar.gz rtmux-0ec1ce005c98f4fa1813cf47e4bcc11d8cd4b523.tar.bz2 rtmux-0ec1ce005c98f4fa1813cf47e4bcc11d8cd4b523.zip |
Sync OpenBSD patchset 322:
Permit options such as status-bg to be configured using the entire 256 colour
palette by setting "colour0" to "colour255".
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.439 2009-09-07 23:59:19 tcunha Exp $ */ +/* $Id: tmux.h,v 1.440 2009-09-11 14:13:52 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1484,7 +1484,9 @@ void input_key(struct window_pane *, int); void input_mouse(struct window_pane *, u_char, u_char, u_char); /* colour.c */ -const char *colour_tostring(u_char); +void colour_set_fg(struct grid_cell *, int); +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); |