mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02: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:
parent
5360b3eaaf
commit
50eae89a96
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue