# HG changeset patch # User Eli Zaretskii # Date 1183738479 0 # Node ID 8215e5c9261225b07c462af0f927846cb97bea9d # Parent 59741e45a674812c41cd4f4ae88e6863fa565cb7 Document how to get back the old binding of SPC in file prompts. diff -r 59741e45a674 -r 8215e5c92612 etc/NEWS.22 --- a/etc/NEWS.22 Fri Jul 06 12:58:16 2007 +0000 +++ b/etc/NEWS.22 Fri Jul 06 16:14:39 2007 +0000 @@ -261,6 +261,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.