diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-08-07 00:12:13 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-08-07 00:12:13 +0000 |
commit | 04e97e8aefa722b7a0941a70889afc7e50c24035 (patch) | |
tree | d52204d63e12052b6a854a0c94b31942be512615 /tmux.h | |
parent | 746fe5832a428ac8d74f17c1d463805e51bee0c3 (diff) | |
download | rtmux-04e97e8aefa722b7a0941a70889afc7e50c24035.tar.gz rtmux-04e97e8aefa722b7a0941a70889afc7e50c24035.tar.bz2 rtmux-04e97e8aefa722b7a0941a70889afc7e50c24035.zip |
Using the alternative screen (smcup/rmcup) should also preserve the current
colours and attributes. Found thanks to a report from Taylor Venable.
While here also nuke a couple of extra blank lines.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -602,7 +602,6 @@ struct input_ctx { struct grid_cell cell; - struct grid_cell saved_cell; u_int saved_cx; u_int saved_cy; @@ -674,6 +673,7 @@ struct window_pane { u_int saved_cx; u_int saved_cy; struct grid *saved_grid; + struct grid_cell saved_cell; const struct window_mode *mode; void *modedata; |