aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGlenn Morris2020-05-09 10:03:21 -0700
committerGlenn Morris2020-05-09 10:03:21 -0700
commit5c890bfc191d0cf18dccbbf50ebdcde946a0d7fb (patch)
tree8e14f3cedc3fba87248f49c2e960f6bf3cfe2da7 /etc
parent196bc13b7bc5a29fa4d27e83d7cf0db4d99aa8b7 (diff)
parentbe0d1cac83d14596406571f9cb668031ec5675ac (diff)
downloademacs-5c890bfc191d0cf18dccbbf50ebdcde946a0d7fb.tar.gz
emacs-5c890bfc191d0cf18dccbbf50ebdcde946a0d7fb.zip
Merge from origin/emacs-27
be0d1cac83 (origin/emacs-27) Small fix for type of 'display-fill-colu... c5e5839776 Fix customization of 'display-fill-column-indicator-charac... d5c184aa3e Refer to fill column indicator Info node in some places. e13300ae50 Merge branch 'emacs-27' of git.sv.gnu.org:/srv/git/emacs i... 0bae57033f Fix GTK's Tool Bar menu radio buttons 4c98aa7ea5 Minor clarifications in NEWS a1cbd05f38 Improve documentation of 'with-suppressed-warnings'. 4a895c1b26 Fix a typo in a comment 2caf3e997e Improve documentation of Hi Lock mode 7081c1d66f Fix typos in the Emacs user manual 0385771e2f Fix references to Speedbar in VHDL mode a76cafea0d Fix handling of FROM = t and TO = t by 'window-text-pixel-... # Conflicts: # etc/NEWS # src/xdisp.c
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.