summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2013-03-21 18:44:47 +0000
committerNicholas Marriott <nicm@openbsd.org>2013-03-21 18:44:47 +0000
commit3d24c75d0f9234f7490f6e5277476fb8d6748da6 (patch)
tree1c0a8f1ca88fa0728fede55b376968ad38d12feb
parent78543cce30245c3450adc31c8787373c5ca93e38 (diff)
Include the \033 in the key tree and adjust key matching for this change.
-rw-r--r--tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty.c b/tty.c
index 9618a333..0749b510 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);