From 79c5ea9911a9aba7db0ba0e367e06507cee2fc02 Mon Sep 17 00:00:00 2001 From: Martin Rudalics Date: Thu, 27 Apr 2017 10:18:48 +0200 Subject: 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'. --- src/window.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src') 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 `window-height' or `window-width' entry in the alist used by `display-buffer'. Otherwise, this value is handled like nil. +`temp-buffer-resize' means that splitting a window for displaying a + temporary buffer via `with-temp-buffer-window' makes a new parent + window only if `temp-buffer-resize-mode' is enabled. Otherwise, + this value is handled like nil. + `temp-buffer' means that splitting a window for displaying a temporary - buffer always makes a new parent window. Otherwise, this value is - handled like nil. + buffer via `with-temp-buffer-window' always makes a new parent + window. Otherwise, this value is handled like nil. `display-buffer' means that splitting a window for displaying a buffer 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 tree and every window but the frame's root window has exactly one sibling. -Other values are reserved for future use. */); +The default value is `window-size'. Other values are reserved for +future use. */); Vwindow_combination_limit = Qwindow_size; DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters, -- cgit v1.2.1