diff options
| author | Martin Rudalics | 2017-04-27 10:18:48 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2017-04-27 10:18:48 +0200 |
| commit | 79c5ea9911a9aba7db0ba0e367e06507cee2fc02 (patch) | |
| tree | c94b6576e5d5d4fd0a53a700b911a6e470ecc79d /src | |
| parent | ee42f02c91a6d50d67e32c34a66029f5ee9a26ed (diff) | |
| download | emacs-79c5ea9911a9aba7db0ba0e367e06507cee2fc02.tar.gz emacs-79c5ea9911a9aba7db0ba0e367e06507cee2fc02.zip | |
Fix doc and customization type of `window-combination-limit' (Bug#26673)
* src/window.c (Vwindow_combination_limit): Fix doc-string.
* lisp/cus-start.el (window-combination-limit): Fix
customization type.
* doc/lispref/windows.texi (Recombining Windows): Fix
documentation of `window-combination-limit'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c index 2d6f0e48faa..fc9f40222bb 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -7468,9 +7468,14 @@ nil means splitting a window will create a new parent window only if the | |||
| 7468 | `window-height' or `window-width' entry in the alist used by | 7468 | `window-height' or `window-width' entry in the alist used by |
| 7469 | `display-buffer'. Otherwise, this value is handled like nil. | 7469 | `display-buffer'. Otherwise, this value is handled like nil. |
| 7470 | 7470 | ||
| 7471 | `temp-buffer-resize' means that splitting a window for displaying a | ||
| 7472 | temporary buffer via `with-temp-buffer-window' makes a new parent | ||
| 7473 | window only if `temp-buffer-resize-mode' is enabled. Otherwise, | ||
| 7474 | this value is handled like nil. | ||
| 7475 | |||
| 7471 | `temp-buffer' means that splitting a window for displaying a temporary | 7476 | `temp-buffer' means that splitting a window for displaying a temporary |
| 7472 | buffer always makes a new parent window. Otherwise, this value is | 7477 | buffer via `with-temp-buffer-window' always makes a new parent |
| 7473 | handled like nil. | 7478 | window. Otherwise, this value is handled like nil. |
| 7474 | 7479 | ||
| 7475 | `display-buffer' means that splitting a window for displaying a buffer | 7480 | `display-buffer' means that splitting a window for displaying a buffer |
| 7476 | always makes a new parent window. Since temporary buffers are | 7481 | always makes a new parent window. Since temporary buffers are |
| @@ -7483,7 +7488,8 @@ t means that splitting a window always creates a new parent window. If | |||
| 7483 | tree and every window but the frame's root window has exactly one | 7488 | tree and every window but the frame's root window has exactly one |
| 7484 | sibling. | 7489 | sibling. |
| 7485 | 7490 | ||
| 7486 | Other values are reserved for future use. */); | 7491 | The default value is `window-size'. Other values are reserved for |
| 7492 | future use. */); | ||
| 7487 | Vwindow_combination_limit = Qwindow_size; | 7493 | Vwindow_combination_limit = Qwindow_size; |
| 7488 | 7494 | ||
| 7489 | DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters, | 7495 | DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters, |