(Fwhere_is_internal): Use nconc2.
This commit is contained in:
parent
63255710c1
commit
bc5e75b616
2 changed files with 5 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue