# HG changeset patch # User Eli Zaretskii # Date 1183738417 0 # Node ID 51ee6159fec2d8c508af1bc775cae876859d4a17 # Parent eee9205202c1a3b6105fb06d8a1bd3d61e4dd1c8 Document how to get back the old binding of SPC in file prompts. diff -r eee9205202c1 -r 51ee6159fec2 etc/NEWS --- a/etc/NEWS Wed Jul 04 16:18:49 2007 +0000 +++ b/etc/NEWS Fri Jul 06 16:13:37 2007 +0000 @@ -264,6 +264,14 @@ keymaps that are active in the minibuffer are described below under "New keymaps for typing file names". +If you want the old behavior back, put these two key bindings to your +~/.emacs init file: + + (define-key minibuffer-local-filename-completion-map + " " 'minibuffer-complete-word) + (define-key minibuffer-local-must-match-filename-map + " " 'minibuffer-complete-word) + ** The completion commands TAB, SPC and ? in the minibuffer apply only to the text before point. If there is text in the buffer after point, it remains unchanged.