Include the \033 in the key tree and adjust key matching for this change.

pull/1/head
Nicholas Marriott 2013-03-21 18:44:47 +00:00
parent 78543cce30
commit 3d24c75d0f
1 changed files with 1 additions and 1 deletions

2
tty.c
View File

@ -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);