diff options
| author | Basil L. Contovounesios | 2024-06-10 07:29:38 +0200 |
|---|---|---|
| committer | Basil L. Contovounesios | 2024-06-10 09:32:55 +0200 |
| commit | d6ecabe23b752116e48e8fbb28ee6f47eef5ec18 (patch) | |
| tree | 21cfb4e961b526634f173a90396caae2a039a1de | |
| parent | 4d59608ec40d725c6d7ec57d02a81ea6c3641079 (diff) | |
| download | emacs-d6ecabe23b752116e48e8fbb28ee6f47eef5ec18.tar.gz emacs-d6ecabe23b752116e48e8fbb28ee6f47eef5ec18.zip | |
; Tweak recent NEWS and window.el docs.
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/window.el | 16 |
2 files changed, 9 insertions, 9 deletions
| @@ -129,7 +129,7 @@ to your init: | |||
| 129 | ** The default process filter was rewritten in native code. | 129 | ** The default process filter was rewritten in native code. |
| 130 | The round-trip through the Lisp function | 130 | The round-trip through the Lisp function |
| 131 | 'internal-default-process-filter' is skipped when the process filter is | 131 | 'internal-default-process-filter' is skipped when the process filter is |
| 132 | the default one. It's reimplemented in native code, reducing GC churn. | 132 | the default one. It's reimplemented in native code, reducing GC churn. |
| 133 | 133 | ||
| 134 | To undo the change, set 'read-process-output-fast' to nil. | 134 | To undo the change, set 'read-process-output-fast' to nil. |
| 135 | 135 | ||
diff --git a/lisp/window.el b/lisp/window.el index 16aee6a306a..604b9868921 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -7852,14 +7852,14 @@ Action alist entries are: | |||
| 7852 | `some-window' -- This entry defines which window | 7852 | `some-window' -- This entry defines which window |
| 7853 | `display-buffer-use-some-window' should choose. The possible choices | 7853 | `display-buffer-use-some-window' should choose. The possible choices |
| 7854 | are `lru' or nil (the default) to select the least recently used window, | 7854 | are `lru' or nil (the default) to select the least recently used window, |
| 7855 | and `mru' to select the most recently used window. It can also be | 7855 | and `mru' to select the most recently used window. It can also be a |
| 7856 | a function that takes two arguments: a buffer and an alist, and should | 7856 | function that takes two arguments: a buffer and an alist, and should |
| 7857 | return the window where to display the buffer. If the value is `lru', | 7857 | return the window in which to display the buffer. If the value is |
| 7858 | it avoids selecting windows that are not full-width and windows on | 7858 | `lru', it avoids selecting windows that are not full-width and windows |
| 7859 | another frame. If the value is `mru', it does not consider the | 7859 | on another frame. If the value is `mru', it does not consider the |
| 7860 | selected window and windows on any frame but the selected one. | 7860 | selected window and windows on any frame but the selected one. It's |
| 7861 | It's useful to customize `display-buffer-base-action' to | 7861 | useful to customize `display-buffer-base-action' to |
| 7862 | `(nil . ((some-window . mru))) when you want to display buffers in the | 7862 | `(nil . ((some-window . mru)))' when you want to display buffers in the |
| 7863 | same non-selected window in a configuration with more than two windows. | 7863 | same non-selected window in a configuration with more than two windows. |
| 7864 | `body-function' -- A function called with one argument - the | 7864 | `body-function' -- A function called with one argument - the |
| 7865 | displayed window. It is called after the buffer is | 7865 | displayed window. It is called after the buffer is |