Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
66d77eda
Commit
66d77eda
authored
Sep 11, 2009
by
Stefan Monnier
Browse files
(get_keymap): Return the actual keymap symbol rather than t for autoloaded
keymaps when autoloading is not allowed (bug#4393).
parent
5238a749
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
src/ChangeLog
src/ChangeLog
+3
-0
src/keymap.c
src/keymap.c
+1
-1
No files found.
src/ChangeLog
View file @
66d77eda
2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
* keymap.c (get_keymap): Return the actual keymap symbol rather than
t for autoloaded keymaps when autoloading is not allowed (bug#4393).
* keymap.c (QCadvertised_binding): New constant.
(syms_of_keymap): Initialize it.
(Fwhere_is_internal): Try and use bindings from :advertised-binding
...
...
src/keymap.c
View file @
66d77eda
...
...
@@ -292,7 +292,7 @@ get_keymap (object, error, autoload)
goto autoload_retry;
}
else
return
Q
t;
return
objec
t;
}
}
}
...
...
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