diff options
| author | Stefan Monnier | 2005-12-06 15:53:58 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-12-06 15:53:58 +0000 |
| commit | da8ec671f736fd22ade1ae1291d48045c62fab64 (patch) | |
| tree | c89c1b35a72629b68e6ddd93d638397806eef726 /src/minibuf.c | |
| parent | 98b537f7151dc58c764edbdcf6542345639ebf96 (diff) | |
| download | emacs-da8ec671f736fd22ade1ae1291d48045c62fab64.tar.gz emacs-da8ec671f736fd22ade1ae1291d48045c62fab64.zip | |
(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.
Diffstat (limited to 'src/minibuf.c')
| -rw-r--r-- | src/minibuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 () | |||
| 2926 | initial_define_key (Vminibuffer_local_completion_map, '?', | 2926 | initial_define_key (Vminibuffer_local_completion_map, '?', |
| 2927 | "minibuffer-completion-help"); | 2927 | "minibuffer-completion-help"); |
| 2928 | 2928 | ||
| 2929 | initial_define_key (Vminibuffer_local_filename_completion_map, ' ', | 2929 | Fdefine_key (Vminibuffer_local_filename_completion_map, |
| 2930 | "self-insert-command"); | 2930 | build_string (" "), Qnil); |
| 2931 | 2931 | ||
| 2932 | initial_define_key (Vminibuffer_local_must_match_map, Ctl ('m'), | 2932 | initial_define_key (Vminibuffer_local_must_match_map, Ctl ('m'), |
| 2933 | "minibuffer-complete-and-exit"); | 2933 | "minibuffer-complete-and-exit"); |