aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2017-02-10 12:59:18 +0000
committernicm <nicm>2017-02-10 12:59:18 +0000
commitd22c15107ba3bd019cfbc3e83cd1b12acf258029 (patch)
tree53b6c591d5d478cc99c5651e908a6605c833a40a /tmux.h
parentc6a3446398648fc2cc3682c351b57b9bfe5bc5f0 (diff)
downloadrtmux-d22c15107ba3bd019cfbc3e83cd1b12acf258029.tar.gz
rtmux-d22c15107ba3bd019cfbc3e83cd1b12acf258029.tar.bz2
rtmux-d22c15107ba3bd019cfbc3e83cd1b12acf258029.zip
Don't use a bufferevent for the tty, so we can keep better track of what
is being written and when. Also a manpage typo fix from jmc@.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 2a5dbe65..d2621f8b 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1041,7 +1041,10 @@ struct tty {
u_int rright;
int fd;
- struct bufferevent *event;
+ struct event event_in;
+ struct evbuffer *in;
+ struct event event_out;
+ struct evbuffer *out;
struct termios tio;