diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-21 18:44:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-21 18:44:47 +0000 |
commit | 3d24c75d0f9234f7490f6e5277476fb8d6748da6 (patch) | |
tree | 1c0a8f1ca88fa0728fede55b376968ad38d12feb | |
parent | 78543cce30245c3450adc31c8787373c5ca93e38 (diff) | |
download | rtmux-3d24c75d0f9234f7490f6e5277476fb8d6748da6.tar.gz rtmux-3d24c75d0f9234f7490f6e5277476fb8d6748da6.tar.bz2 rtmux-3d24c75d0f9234f7490f6e5277476fb8d6748da6.zip |
Include the \033 in the key tree and adjust key matching for this change.
-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); |