1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-07 15:00:34 -08:00

Improve documentation of 'warning-display-at-bottom'

* lisp/emacs-lisp/warnings.el (warning-display-at-bottom):
* doc/lispref/display.texi (Warning Options):
* doc/emacs/windows.texi (Temporary Displays):
* etc/NEWS: Improve documentation of 'warning-display-at-bottom'.
See https://lists.gnu.org/archive/html/emacs-devel/2025-07/msg00024.html
for more details.
This commit is contained in:
Eli Zaretskii 2025-07-04 15:02:29 +03:00
parent 30dae2ad23
commit 5bdacbe460
4 changed files with 42 additions and 3 deletions

View file

@ -122,9 +122,18 @@ See also `warning-suppress-log-types'."
:version "22.1")
(defcustom warning-display-at-bottom t
"Display the warning buffer at the bottom of the screen.
The output window will be scrolled to the bottom of the buffer
to show the last warning message."
"Whether to display the warning buffer at the bottom of the screen.
If this is non-nil (the default), Emacs will attempt to display the
window showing the warning buffer at the bottom of the selected
frame, whether by reusing the bottom-most window or by creating a
new window at the bottom of the frame. The resulting window will be
scrolled to the bottom of the buffer to show the last warning message.
If the value of this variable is nil, Emacs will display the warning
buffer in some window, as determined by `display-buffer' and its
customizations. In particular, the category designated by the
symbol `warning' can be used in `display-buffer-alist' to customize
the display of this buffer."
:type 'boolean
:version "30.1")