1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-20 05:13:37 -04:00

/BIND ^W-1 was treated as ^W + '-' + '1', not as ^W + '1'..

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1794 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-09-11 18:32:43 +00:00 committed by cras
parent 5360b3eaaf
commit 50eae89a96

View File

@ -289,7 +289,7 @@ static int expand_key(const char *key, GSList **out)
expand_out_char(*out, '^'); expand_out_char(*out, '^');
expand_out_char(*out, *key); expand_out_char(*out, *key);
expand_out_char(*out, '-'); expand_out_char(*out, '-');
last_hyphen = TRUE; last_hyphen = FALSE; /* optional */
} else { } else {
/* key / combo */ /* key / combo */
start = key; start = key;