mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-26 19:18:50 +00:00
(get_keymap): An autoload form is not a keymap.
This commit is contained in:
parent
98ebf86079
commit
9ce78f7c7b
@ -267,7 +267,8 @@ get_keymap (object, error, autoload)
|
||||
|
||||
/* Should we do an autoload? Autoload forms for keymaps have
|
||||
Qkeymap as their fifth element. */
|
||||
if ((autoload || !error) && EQ (XCAR (tem), Qautoload))
|
||||
if ((autoload || !error) && EQ (XCAR (tem), Qautoload)
|
||||
&& SYMBOLP (object))
|
||||
{
|
||||
Lisp_Object tail;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user