diff options
author | nicm <nicm> | 2017-02-10 12:59:18 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-02-10 12:59:18 +0000 |
commit | d22c15107ba3bd019cfbc3e83cd1b12acf258029 (patch) | |
tree | 53b6c591d5d478cc99c5651e908a6605c833a40a /tmux.h | |
parent | c6a3446398648fc2cc3682c351b57b9bfe5bc5f0 (diff) | |
download | rtmux-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.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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; |