diff options
author | 2013-03-21 18:44:47 +0000 | |
---|---|---|
committer | 2013-03-21 18:44:47 +0000 | |
commit | c740be85c2303f61fc06156a0012f778a874eb14 (patch) | |
tree | 8e81c0001d259fb48cb83c3bddfad4cd8ef903a0 /usr.bin/tmux/tty.c | |
parent | Support capture-pane -p to send to stdout. (diff) | |
download | wireguard-openbsd-c740be85c2303f61fc06156a0012f778a874eb14.tar.xz wireguard-openbsd-c740be85c2303f61fc06156a0012f778a874eb14.zip |
Include the \033 in the key tree and adjust key matching for this change.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 8db136987d8..c0a57031525 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.148 2013/03/21 16:50:22 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.149 2013/03/21 18:44:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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); |