aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index ae4fddb2c89..7a8451d8375 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -8778,7 +8778,8 @@ access_keymap_keyremap (Lisp_Object map, Lisp_Object key, Lisp_Object prompt,
8778 (To ignore it safely, we would need to gcpro a bunch of 8778 (To ignore it safely, we would need to gcpro a bunch of
8779 other variables.) */ 8779 other variables.) */
8780 if (! (VECTORP (next) || STRINGP (next))) 8780 if (! (VECTORP (next) || STRINGP (next)))
8781 error ("Function %s returns invalid key sequence", tem); 8781 error ("Function %s returns invalid key sequence",
8782 SSDATA (SYMBOL_NAME (tem)));
8782 } 8783 }
8783 return next; 8784 return next;
8784} 8785}