diff options
| author | Paul Eggert | 2011-04-06 19:51:18 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-06 19:51:18 -0700 |
| commit | bff87ef0301f6039ffcf1f2eb5503fa262a32285 (patch) | |
| tree | 75d719df0963432957c18f6462c03e12af8e16d3 /src/keyboard.c | |
| parent | 7e2cac200108a4626573c4a8de851560c1fee456 (diff) | |
| download | emacs-bff87ef0301f6039ffcf1f2eb5503fa262a32285.tar.gz emacs-bff87ef0301f6039ffcf1f2eb5503fa262a32285.zip | |
* keyboard.c (access_keymap_keyremap): Print func name, not garbage.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 3 |
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 | } |