diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-16 13:21:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-16 13:21:14 +0000 |
commit | 10db7ec51b484d59fa039e64e85ea463553bf1ad (patch) | |
tree | e875c724c66bccc29bf4eada309b4ac316dd5792 /tty.c | |
parent | 4f01bfc4bce9688c6c8b35f698c8444270e20cdc (diff) | |
download | rtmux-10db7ec51b484d59fa039e64e85ea463553bf1ad.tar.gz rtmux-10db7ec51b484d59fa039e64e85ea463553bf1ad.tar.bz2 rtmux-10db7ec51b484d59fa039e64e85ea463553bf1ad.zip |
Include the \033 in the key tree and adjust key matching for this change.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -149,7 +149,7 @@ tty_open(struct tty *tty, const char *overrides, char **cause) } tty->flags |= TTY_OPENED; - tty->flags &= ~(TTY_NOCURSOR|TTY_FREEZE|TTY_ESCAPE); + tty->flags &= ~(TTY_NOCURSOR|TTY_FREEZE|TTY_TIMER); tty->event = bufferevent_new( tty->fd, tty_read_callback, NULL, tty_error_callback, tty); |