mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-23 08:33:17 +01:00
Fix typo in escape state table leading to fatal() when \033} or \033~
was entered, from Chris Johnsen.
This commit is contained in:
parent
a6d52405a8
commit
622593a77f
2
input.c
2
input.c
@ -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 }
|
||||
|
Loading…
Reference in New Issue
Block a user