diff options
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; |