aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-02-16 13:21:14 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-02-16 13:21:14 +0000
commit10db7ec51b484d59fa039e64e85ea463553bf1ad (patch)
treee875c724c66bccc29bf4eada309b4ac316dd5792 /tty.c
parent4f01bfc4bce9688c6c8b35f698c8444270e20cdc (diff)
downloadrtmux-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty.c b/tty.c
index 868032d8..378539ca 100644
--- a/tty.c
+++ b/tty.c
@@ -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);