diff options
author | nicm <nicm> | 2017-01-12 10:15:55 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-12 10:15:55 +0000 |
commit | dad3090d3201bd8272cb762beea8ef3aa8ce9673 (patch) | |
tree | 7eabaa5e21dba83f468d7bd93a90c5cfa1399700 /tmux.h | |
parent | 9b6aeacdc0118d97c35e822c958e925f12b513ed (diff) | |
download | rtmux-dad3090d3201bd8272cb762beea8ef3aa8ce9673.tar.gz rtmux-dad3090d3201bd8272cb762beea8ef3aa8ce9673.tar.bz2 rtmux-dad3090d3201bd8272cb762beea8ef3aa8ce9673.zip |
Put all palette functions together in the file.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2134,6 +2134,7 @@ void window_pane_alternate_off(struct window_pane *, void window_pane_set_palette(struct window_pane *, u_int, int); void window_pane_unset_palette(struct window_pane *, u_int); void window_pane_reset_palette(struct window_pane *); +int window_pane_get_palette(const struct window_pane *, int); int window_pane_set_mode(struct window_pane *, const struct window_mode *); void window_pane_reset_mode(struct window_pane *); @@ -2152,7 +2153,6 @@ void window_set_name(struct window *, const char *); void window_remove_ref(struct window *); void winlink_clear_flags(struct winlink *); int winlink_shuffle_up(struct session *, struct winlink *); -int window_pane_get_palette(const struct window_pane *, int); /* layout.c */ u_int layout_count_cells(struct layout_cell *); |