aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-07-15 17:43:45 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-07-15 17:43:45 +0000
commit72d56bd6140a0101c04f48da6633ff93708b731d (patch)
tree630d0fa7ce9920d2a666a3c0a633634814e45865 /tmux.h
parentad1945c278630aa300ce3ca25400d8bef5f36815 (diff)
downloadrtmux-72d56bd6140a0101c04f48da6633ff93708b731d.tar.gz
rtmux-72d56bd6140a0101c04f48da6633ff93708b731d.tar.bz2
rtmux-72d56bd6140a0101c04f48da6633ff93708b731d.zip
Instead of faking up a status line in status_redraw, use the same code to
redraw it as to draw the entire screen, just skip all lines but the last.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 94a41614..c15b1ad7 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.362 2009-07-15 17:42:44 nicm Exp $ */
+/* $Id: tmux.h,v 1.363 2009-07-15 17:43:45 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1394,9 +1394,8 @@ void screen_write_cell(
struct screen_write_ctx *, const struct grid_cell *, u_char *);
/* screen-redraw.c */
-void screen_redraw_screen(struct client *);
+void screen_redraw_screen(struct client *, int);
void screen_redraw_pane(struct client *, struct window_pane *);
-void screen_redraw_status(struct client *);
/* screen.c */
void screen_init(struct screen *, u_int, u_int, u_int);