Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9ce78f7c
Commit
9ce78f7c
authored
Oct 13, 2004
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(get_keymap): An autoload form is not a keymap.
parent
98ebf860
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/keymap.c
src/keymap.c
+2
-1
No files found.
src/keymap.c
View file @
9ce78f7c
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment