aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPo Lu2023-02-24 09:06:15 +0800
committerPo Lu2023-02-24 09:06:15 +0800
commit4aaa6fd24cf702bbeac249f2eca5deb414767870 (patch)
tree05260c1dbc4b88a6c3c5bd57df85d8866eaf645f
parent4bcf2513085feffb886806d49b070577e7638056 (diff)
downloademacs-4aaa6fd24cf702bbeac249f2eca5deb414767870.tar.gz
emacs-4aaa6fd24cf702bbeac249f2eca5deb414767870.zip
; * src/keyboard.c (lispy_function_keys): Add missing delete key.
-rw-r--r--src/keyboard.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 69fb8ae2797..8cdc5027ebd 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -4970,6 +4970,7 @@ const char *const lispy_function_keys[] =
4970 /* All elements in this array default to 0, except for the few 4970 /* All elements in this array default to 0, except for the few
4971 function keys that Emacs recognizes. */ 4971 function keys that Emacs recognizes. */
4972 [111] = "escape", 4972 [111] = "escape",
4973 [112] = "delete",
4973 [121] = "break", 4974 [121] = "break",
4974 [122] = "home", 4975 [122] = "home",
4975 [123] = "end", 4976 [123] = "end",