aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2006-09-02 21:19:21 +0000
committerEli Zaretskii2006-09-02 21:19:21 +0000
commitbdbae5b870c10ce7a8225d079f844896bd32c450 (patch)
tree0bac95785b2f0a332a8b27bba5f721929ed627fc /src
parent4f3097d8bcc4faa2abda36177161e3d6caf3b433 (diff)
downloademacs-bdbae5b870c10ce7a8225d079f844896bd32c450.tar.gz
emacs-bdbae5b870c10ce7a8225d079f844896bd32c450.zip
(syms_of_window) <split-height-threshold>:
<window-min-height, window-min-width>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/window.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c
index ba8a541e779..a0a8b351a02 100644
--- a/src/window.c
+++ b/src/window.c
@@ -7290,16 +7290,18 @@ See also `same-window-buffer-names'. */);
7290 next_screen_context_lines = 2; 7290 next_screen_context_lines = 2;
7291 7291
7292 DEFVAR_INT ("split-height-threshold", &split_height_threshold, 7292 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
7293 doc: /* *A window must be at least this tall to be eligible for splitting by `display-buffer'. 7293 doc: /* *A window must be at least this tall to be eligible for splitting
7294by `display-buffer'. The value is in line units.
7294If there is only one window, it is split regardless of this value. */); 7295If there is only one window, it is split regardless of this value. */);
7295 split_height_threshold = 500; 7296 split_height_threshold = 500;
7296 7297
7297 DEFVAR_INT ("window-min-height", &window_min_height, 7298 DEFVAR_INT ("window-min-height", &window_min_height,
7298 doc: /* *Delete any window less than this tall (including its mode line). */); 7299 doc: /* *Delete any window less than this tall (including its mode line).
7300The value is in line units. */);
7299 window_min_height = 4; 7301 window_min_height = 4;
7300 7302
7301 DEFVAR_INT ("window-min-width", &window_min_width, 7303 DEFVAR_INT ("window-min-width", &window_min_width,
7302 doc: /* *Delete any window less than this wide. */); 7304 doc: /* *Delete any window less than this wide (measured in characters). */);
7303 window_min_width = 10; 7305 window_min_width = 10;
7304 7306
7305 DEFVAR_LISP ("scroll-preserve-screen-position", 7307 DEFVAR_LISP ("scroll-preserve-screen-position",