# HG changeset patch # User Stefan Monnier # Date 1133884438 0 # Node ID 8fd060c85b668b8768bb14c527faf93fc585cc9c # Parent a4c86f9070f40e9458665f5b22b3f0b4030c4b0b (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. diff -r a4c86f9070f4 -r 8fd060c85b66 src/ChangeLog --- a/src/ChangeLog Tue Dec 06 12:57:35 2005 +0000 +++ b/src/ChangeLog Tue Dec 06 15:53:58 2005 +0000 @@ -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 -r a4c86f9070f4 -r 8fd060c85b66 src/minibuf.c --- a/src/minibuf.c Tue Dec 06 12:57:35 2005 +0000 +++ b/src/minibuf.c Tue Dec 06 15:53:58 2005 +0000 @@ -2926,8 +2926,8 @@ 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");