comparison src/window.c @ 72615:17955b3a0929

(syms_of_window) <split-height-threshold>: <window-min-height, window-min-width>: Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 02 Sep 2006 21:19:21 +0000
parents d08eb7bd3ca2
children 6e654c485c0a c358d0861b16
comparison
equal deleted inserted replaced
72614:af91ff74c754 72615:17955b3a0929
7288 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines, 7288 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
7289 doc: /* *Number of lines of continuity when scrolling by screenfuls. */); 7289 doc: /* *Number of lines of continuity when scrolling by screenfuls. */);
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
7294 by `display-buffer'. The value is in line units.
7294 If there is only one window, it is split regardless of this value. */); 7295 If 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).
7300 The 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",
7306 &Vscroll_preserve_screen_position, 7308 &Vscroll_preserve_screen_position,
7307 doc: /* *Controls if scroll commands move point to keep its screen line unchanged. 7309 doc: /* *Controls if scroll commands move point to keep its screen line unchanged.