aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorRichard M. Stallman1995-01-19 18:56:43 +0000
committerRichard M. Stallman1995-01-19 18:56:43 +0000
commitb59ab95c5cbfe7663b04f95e896c19f1284e6e46 (patch)
treeffe6660518128dfe0aae5447075b9060c4c18293 /src/term.c
parentd5a539cd375567e1d5e39d79a9363b73745fb48f (diff)
downloademacs-b59ab95c5cbfe7663b04f95e896c19f1284e6e46.tar.gz
emacs-b59ab95c5cbfe7663b04f95e896c19f1284e6e46.zip
(term_get_fkeys_1): Bug fix for function key above f19.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/term.c b/src/term.c
index 2f3695856b9..e681c7f4bc9 100644
--- a/src/term.c
+++ b/src/term.c
@@ -1325,9 +1325,9 @@ term_get_fkeys_1 ()
1325 if (i <= 19) 1325 if (i <= 19)
1326 fcap[1] = '1' + i - 11; 1326 fcap[1] = '1' + i - 11;
1327 else if (i <= 45) 1327 else if (i <= 45)
1328 fcap[1] = 'A' + i - 11; 1328 fcap[1] = 'A' + i - 20;
1329 else 1329 else
1330 fcap[1] = 'a' + i - 11; 1330 fcap[1] = 'a' + i - 46;
1331 1331
1332 { 1332 {
1333 char *sequence = tgetstr (fcap, address); 1333 char *sequence = tgetstr (fcap, address);