aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS.2716
1 files changed, 11 insertions, 5 deletions
diff --git a/etc/NEWS.27 b/etc/NEWS.27
index 42133b8bad8..bb275b70e6f 100644
--- a/etc/NEWS.27
+++ b/etc/NEWS.27
@@ -881,21 +881,27 @@ list the contents of such directories when completing file names.
881** Minibuffer 881** Minibuffer
882 882
883+++ 883+++
884*** A new user option, 'minibuffer-beginning-of-buffer-movement', has 884*** New user option 'minibuffer-beginning-of-buffer-movement'.
885been introduced to allow controlling how the 'M-<' command works in 885This option allows control of how the 'M-<' command works in
886the minibuffer. If non-nil, point will move to the end of the prompt 886the minibuffer. If non-nil, point will move to the end of the prompt
887(if point is after the end of the prompt). 887(if point is after the end of the prompt). The default is nil, which
888preserves the original behavior of 'M-<' moving to the beginning of
889the prompt.
888 890
889+++ 891+++
890*** When the minibuffer is active, echo-area messages are displayed at 892*** When the minibuffer is active, echo-area messages are displayed at
891the end of the minibuffer instead of hiding the minibuffer by the echo 893the end of the minibuffer instead of hiding the minibuffer by the echo
892area display. The new user option 'minibuffer-message-clear-timeout' 894area display. The new user option 'minibuffer-message-clear-timeout'
893controls how messages displayed in this situation are removed from the 895controls how messages displayed in this situation are removed from the
894minibuffer. 896minibuffer. To revert to previous behavior, where echo-area messages
897temporarily overwrote the minibuffer contents until the user typed
898something, set 'set-message-function' and 'clear-message-function' to
899nil.
895 900
896--- 901---
897*** Minibuffer now uses 'minibuffer-message' to display error messages 902*** Minibuffer now uses 'minibuffer-message' to display error messages
898at the end of the active minibuffer. 903at the end of the active minibuffer. To disable this, remove
904'minibuffer-error-initialize' from 'minibuffer-setup-hook'.
899 905
900+++ 906+++
901*** 'y-or-n-p' now uses the minibuffer to read 'y' or 'n' answer. 907*** 'y-or-n-p' now uses the minibuffer to read 'y' or 'n' answer.