From da8ec671f736fd22ade1ae1291d48045c62fab64 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 6 Dec 2005 15:53:58 +0000 Subject: [PATCH] (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. --- src/ChangeLog | 6 ++++++ src/minibuf.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index f66cf95d9d7..2d6ffdef092 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2005-12-06 Stefan Monnier + + * 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 * buffer.c (Fkill_buffer): Avoid dangerous side effects in NILP diff --git a/src/minibuf.c b/src/minibuf.c index 76529bf86e6..8ee1022d9be 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -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"); -- 2.39.5