diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-04-18 15:11:47 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-04-18 15:11:47 +0000 |
commit | 0ed80637e77a5f6d483f64b095cc8f92b09ba0a7 (patch) | |
tree | 757fcc1df4c7426e23a8582ab9a95e4a1598d919 | |
parent | b03418fc6be38e73746a9a0d95773286d20928a9 (diff) | |
download | rtmux-0ed80637e77a5f6d483f64b095cc8f92b09ba0a7.tar.gz rtmux-0ed80637e77a5f6d483f64b095cc8f92b09ba0a7.tar.bz2 rtmux-0ed80637e77a5f6d483f64b095cc8f92b09ba0a7.zip |
Sync OpenBSD patchset 683:
Fix typo in escape state table leading to fatal() when \033} or \033~
was entered, from Chris Johnsen.
-rw-r--r-- | input.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: input.c,v 1.108 2010-03-15 12:51:23 nicm Exp $ */ +/* $Id: input.c,v 1.109 2010-04-18 15:11:47 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -385,7 +385,7 @@ const struct input_transition input_state_esc_enter_table[] = { { 0x5f, 0x5f, NULL, &input_state_apc_string }, { 0x60, 0x6a, input_esc_dispatch, &input_state_ground }, { 0x6b, 0x6b, NULL, &input_state_rename_string }, - { 0x6c, 0x7c, input_esc_dispatch, &input_state_ground }, + { 0x6c, 0x7e, input_esc_dispatch, &input_state_ground }, { 0x7f, 0xff, NULL, NULL }, { -1, -1, NULL, NULL } |