1
0
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:
Stefan Monnier 2004-10-13 17:00:13 +00:00
parent 98ebf86079
commit 9ce78f7c7b

View File

@ -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;