aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-21 14:01:53 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-21 14:01:53 +0000
commitc424ef37d05c7d1da87ba6518f6d15642f13301d (patch)
treeab99997cf833cece52a4d9390247d3a8f27337bb /tmux.h
parent9a6e47cfa8b7ebac8bebc7c2027fd72bee9d38ab (diff)
downloadrtmux-c424ef37d05c7d1da87ba6518f6d15642f13301d.tar.gz
rtmux-c424ef37d05c7d1da87ba6518f6d15642f13301d.tar.bz2
rtmux-c424ef37d05c7d1da87ba6518f6d15642f13301d.zip
Scroll data should be per-window not global.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 6a7caefa..4620e9d4 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.85 2007-11-21 13:11:41 nicm Exp $ */
+/* $Id: tmux.h,v 1.86 2007-11-21 14:01:53 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -448,7 +448,9 @@ struct window {
#define WINDOW_BELL 0x1
struct screen screen;
+
const struct window_mode *mode;
+ void *modedata;
u_int references;
};