mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
(term_get_fkeys_1): Bug fix for function key above f19.
This commit is contained in:
parent
d5a539cd37
commit
b59ab95c5c
@ -1325,9 +1325,9 @@ term_get_fkeys_1 ()
|
||||
if (i <= 19)
|
||||
fcap[1] = '1' + i - 11;
|
||||
else if (i <= 45)
|
||||
fcap[1] = 'A' + i - 11;
|
||||
fcap[1] = 'A' + i - 20;
|
||||
else
|
||||
fcap[1] = 'a' + i - 11;
|
||||
fcap[1] = 'a' + i - 46;
|
||||
|
||||
{
|
||||
char *sequence = tgetstr (fcap, address);
|
||||
|
Loading…
Reference in New Issue
Block a user