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
beea50e4
Commit
beea50e4
authored
Nov 18, 1995
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fexecute_extended_command):
Call Fwhere_is_internal just once to handle all the maps.
parent
c5c4b51c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
src/keyboard.c
src/keyboard.c
+3
-9
No files found.
src/keyboard.c
View file @
beea50e4
...
...
@@ -6565,16 +6565,10 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_
if (!NILP (Vsuggest_key_bindings)
&& SYMBOLP (function))
{
Lisp_Object
*
maps
,
bindings
;
int
nmaps
,
i
;
Lisp_Object bindings;
bindings
=
Qnil
;
nmaps
=
current_active_maps
(
&
maps
);
for
(
i
=
0
;
i
<
nmaps
&&
NILP
(
bindings
);
i
++
)
bindings
=
Fwhere_is_internal
(
function
,
maps
[
i
],
Qt
,
Qnil
);
free
(
maps
);
bindings = Fwhere_is_internal (function, Voverriding_local_map,
Qt, Qnil);
if (!NILP (bindings))
{
...
...
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