aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2017-02-08 23:53:03 +0000
committernicm <nicm>2017-02-08 23:53:03 +0000
commit1811dc5271f5c47f71ddf259adf038d271d0c555 (patch)
tree0c0c782280e9560040fb53475d71f2754276ca1f /tmux.h
parent2f854969ff8dfea7b03b6534318a64f51e9c65e7 (diff)
downloadrtmux-1811dc5271f5c47f71ddf259adf038d271d0c555.tar.gz
rtmux-1811dc5271f5c47f71ddf259adf038d271d0c555.tar.bz2
rtmux-1811dc5271f5c47f71ddf259adf038d271d0c555.zip
Another helper function to write to terminal and log.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index fe5c4ca6..a2bb7c55 100644
--- a/tmux.h
+++ b/tmux.h
@@ -483,6 +483,7 @@ struct msg_stderr_data {
#define MODE_FOCUSON 0x800
#define MODE_MOUSE_ALL 0x1000
+#define ALL_MODES 0xffffff
#define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ALL)
/*
@@ -1085,9 +1086,9 @@ struct tty {
/* TTY command context. */
struct tty_ctx {
- struct window_pane *wp;
+ struct window_pane *wp;
- const struct grid_cell *cell;
+ const struct grid_cell *cell;
u_int num;
void *ptr;