diff options
| author | Glenn Morris | 2020-05-09 10:03:21 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-05-09 10:03:21 -0700 |
| commit | 5c890bfc191d0cf18dccbbf50ebdcde946a0d7fb (patch) | |
| tree | 8e14f3cedc3fba87248f49c2e960f6bf3cfe2da7 /etc | |
| parent | 196bc13b7bc5a29fa4d27e83d7cf0db4d99aa8b7 (diff) | |
| parent | be0d1cac83d14596406571f9cb668031ec5675ac (diff) | |
| download | emacs-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.27 | 16 |
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'. |
| 885 | been introduced to allow controlling how the 'M-<' command works in | 885 | This option allows control of how the 'M-<' command works in |
| 886 | the minibuffer. If non-nil, point will move to the end of the prompt | 886 | the 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 |
| 888 | preserves the original behavior of 'M-<' moving to the beginning of | ||
| 889 | the 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 |
| 891 | the end of the minibuffer instead of hiding the minibuffer by the echo | 893 | the end of the minibuffer instead of hiding the minibuffer by the echo |
| 892 | area display. The new user option 'minibuffer-message-clear-timeout' | 894 | area display. The new user option 'minibuffer-message-clear-timeout' |
| 893 | controls how messages displayed in this situation are removed from the | 895 | controls how messages displayed in this situation are removed from the |
| 894 | minibuffer. | 896 | minibuffer. To revert to previous behavior, where echo-area messages |
| 897 | temporarily overwrote the minibuffer contents until the user typed | ||
| 898 | something, set 'set-message-function' and 'clear-message-function' to | ||
| 899 | nil. | ||
| 895 | 900 | ||
| 896 | --- | 901 | --- |
| 897 | *** Minibuffer now uses 'minibuffer-message' to display error messages | 902 | *** Minibuffer now uses 'minibuffer-message' to display error messages |
| 898 | at the end of the active minibuffer. | 903 | at 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. |