1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(keys_of_minibuf): Just unbind SPC in Vminibuffer_local_filename_completion_map

rather than forcing it explicitly to the same binding as the global map.
This commit is contained in:
Stefan Monnier 2005-12-06 15:53:58 +00:00
parent 98b537f715
commit da8ec671f7
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
* minibuf.c (keys_of_minibuf): Just unbind SPC in
Vminibuffer_local_filename_completion_map rather than forcing it
explicitly to the same binding as the global map.
2005-12-06 Ken Raeburn <raeburn@gnu.org>
* buffer.c (Fkill_buffer): Avoid dangerous side effects in NILP

View file

@ -2926,8 +2926,8 @@ keys_of_minibuf ()
initial_define_key (Vminibuffer_local_completion_map, '?',
"minibuffer-completion-help");
initial_define_key (Vminibuffer_local_filename_completion_map, ' ',
"self-insert-command");
Fdefine_key (Vminibuffer_local_filename_completion_map,
build_string (" "), Qnil);
initial_define_key (Vminibuffer_local_must_match_map, Ctl ('m'),
"minibuffer-complete-and-exit");