aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-26 17:15:50 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-26 17:15:50 +0000
commitab097f0c0c7cd6d30767fc63d05731197160aeeb (patch)
treefe6801809a561a65f0c9252b548c99186b66b17d /tmux.h
parent4a325c8f9366a1c7643d193ff2e613bbc91ce144 (diff)
downloadrtmux-ab097f0c0c7cd6d30767fc63d05731197160aeeb.tar.gz
rtmux-ab097f0c0c7cd6d30767fc63d05731197160aeeb.tar.bz2
rtmux-ab097f0c0c7cd6d30767fc63d05731197160aeeb.zip
Don't save/restore ry_*.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/tmux.h b/tmux.h
index 327a612e..89a1bf0f 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.73 2007-10-26 16:57:32 nicm Exp $ */
+/* $Id: tmux.h,v 1.74 2007-10-26 17:15:50 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -341,17 +341,16 @@ struct screen {
u_int sx; /* size x */
u_int sy; /* size y */
- u_int cx; /* cursor x */
- u_int cy; /* cursor y */
u_int ry_upper; /* scroll region top */
u_int ry_lower; /* scroll region bottom */
+
+ u_int cx; /* cursor x */
+ u_int cy; /* cursor y */
u_char attr;
u_char colr; /* fg:bg */
u_int saved_cx;
u_int saved_cy;
- u_int saved_ry_upper;
- u_int saved_ry_lower;
u_int saved_attr;
u_int saved_colr;