summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2016-10-09 16:24:35 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2016-10-09 16:24:35 +0000
commit136a173a9a25ab6a3d82e32edf3771c74a332cf3 (patch)
tree5526fc5ecd95e4b675b98afe9876c52e322f288d /usr.bin/tmux/tmux.h
parent1a4d426e828297004f87f9b91575c94623f2e3e8 (diff)
Make the CLIENT_STATUS flag imply that pane status lines are redrawn if
they are enabled and break the actual screen generation code into a separate function. Fixes problems reported by Romain Francoise.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index eb95262cdf2..ee018a90dc3 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.647 2016/10/05 12:34:05 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.648 2016/10/09 16:24:34 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -2097,6 +2097,7 @@ void screen_write_setselection(struct screen_write_ctx *, u_char *, u_int);
void screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int);
/* screen-redraw.c */
+void screen_redraw_update(struct client *);
void screen_redraw_screen(struct client *, int, int, int);
void screen_redraw_pane(struct client *, struct window_pane *);