aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 11e40efd4f6..5066cfac779 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -264,6 +264,14 @@ need to quote the space with a C-q. The underlying changes in the
264keymaps that are active in the minibuffer are described below under 264keymaps that are active in the minibuffer are described below under
265"New keymaps for typing file names". 265"New keymaps for typing file names".
266 266
267If you want the old behavior back, put these two key bindings to your
268~/.emacs init file:
269
270 (define-key minibuffer-local-filename-completion-map
271 " " 'minibuffer-complete-word)
272 (define-key minibuffer-local-must-match-filename-map
273 " " 'minibuffer-complete-word)
274
267** The completion commands TAB, SPC and ? in the minibuffer apply only 275** The completion commands TAB, SPC and ? in the minibuffer apply only
268to the text before point. If there is text in the buffer after point, 276to the text before point. If there is text in the buffer after point,
269it remains unchanged. 277it remains unchanged.