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
bc5e75b6
Commit
bc5e75b6
authored
Sep 12, 2009
by
Stefan Monnier
Browse files
(Fwhere_is_internal): Use nconc2.
parent
63255710
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
src/ChangeLog
src/ChangeLog
+4
-0
src/keymap.c
src/keymap.c
+1
-4
No files found.
src/ChangeLog
View file @
bc5e75b6
2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
* keymap.c (Fwhere_is_internal): Use nconc2.
2009-09-11 Alan Mackenzie <acm@muc.de>
* dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
...
...
src/keymap.c
View file @
bc5e75b6
...
...
@@ -2901,10 +2901,7 @@ remapped command in the returned list. */)
{
Lisp_Object seqs = where_is_internal (function, keymaps,
!NILP (noindirect), nomenus);
Lisp_Object args[2];
args[0] = Freverse (seqs);
args[1] = remapped_sequences;
remapped_sequences = Fnconc (2, args);
remapped_sequences = nconc2 (Freverse (seqs), remapped_sequences);
continue;
}
...
...
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