From 10db7ec51b484d59fa039e64e85ea463553bf1ad Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 16 Feb 2013 13:21:14 +0000 Subject: Include the \033 in the key tree and adjust key matching for this change. --- tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tty.c') 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); -- cgit