aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c
index 0b766649b17..ca2bc74fcf4 100644
--- a/src/window.c
+++ b/src/window.c
@@ -7352,7 +7352,7 @@ the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */
7352 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows. 7352 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
7353If the minibuffer is active, the `minibuffer-scroll-window' mode line 7353If the minibuffer is active, the `minibuffer-scroll-window' mode line
7354is displayed in the `mode-line' face. */); 7354is displayed in the `mode-line' face. */);
7355 mode_line_in_non_selected_windows = 1; 7355 mode_line_in_non_selected_windows = true;
7356 7356
7357 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer, 7357 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer,
7358 doc: /* If this is a live buffer, \\[scroll-other-window] should scroll its window. */); 7358 doc: /* If this is a live buffer, \\[scroll-other-window] should scroll its window. */);
@@ -7360,7 +7360,7 @@ is displayed in the `mode-line' face. */);
7360 7360
7361 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p, 7361 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p,
7362 doc: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */); 7362 doc: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
7363 auto_window_vscroll_p = 1; 7363 auto_window_vscroll_p = true;
7364 7364
7365 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines, 7365 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines,
7366 doc: /* Number of lines of continuity when scrolling by screenfuls. */); 7366 doc: /* Number of lines of continuity when scrolling by screenfuls. */);
@@ -7483,7 +7483,7 @@ all functions that symmetrically resize a parent window.
7483Note that when a frame's pixel size is not a multiple of the 7483Note that when a frame's pixel size is not a multiple of the
7484frame's character size, at least one window may get resized 7484frame's character size, at least one window may get resized
7485pixelwise even if this option is nil. */); 7485pixelwise even if this option is nil. */);
7486 window_resize_pixelwise = 0; 7486 window_resize_pixelwise = false;
7487 7487
7488 DEFVAR_BOOL ("fast-but-imprecise-scrolling", 7488 DEFVAR_BOOL ("fast-but-imprecise-scrolling",
7489 Vfast_but_imprecise_scrolling, 7489 Vfast_but_imprecise_scrolling,
@@ -7494,7 +7494,7 @@ are actually going to be displayed get fontified.
7494 7494
7495Note that this optimization can cause the portion of the buffer 7495Note that this optimization can cause the portion of the buffer
7496displayed after a scrolling operation to be somewhat inaccurate. */); 7496displayed after a scrolling operation to be somewhat inaccurate. */);
7497 Vfast_but_imprecise_scrolling = 0; 7497 Vfast_but_imprecise_scrolling = false;
7498 7498
7499 defsubr (&Sselected_window); 7499 defsubr (&Sselected_window);
7500 defsubr (&Sminibuffer_window); 7500 defsubr (&Sminibuffer_window);