Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
26124d5e
Commit
26124d5e
authored
Feb 11, 2002
by
Kim F. Storm
Browse files
(Vmode_line_in_non_selected_windows): New variable.
(syms_of_window): DEFVAR_LISP it.
parent
38b81d74
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
src/window.c
src/window.c
+13
-0
No files found.
src/window.c
View file @
26124d5e
...
...
@@ -133,6 +133,13 @@ Lisp_Object Vother_window_scroll_buffer;
Lisp_Object Vtemp_buffer_show_function;
/* Nil means to use mode-line face in all windows.
t means to use mode-line-inactive face in all windows but the
selected-window and the minibuffer-scroll-window.
Any other value means to use mode-line-inactive face in all
non-selected windows (including minibuffer-scroll-window. */
Lisp_Object Vmode_line_in_non_selected_windows;
/* If a window gets smaller than either of these, it is removed. */
int window_min_height;
...
...
@@ -5796,6 +5803,12 @@ If nil, `display-buffer' will leave the window configuration alone. */);
doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
Vminibuf_scroll_window = Qnil;
DEFVAR_LISP ("mode-line-in-non-selected-windows", &Vmode_line_in_non_selected_windows,
doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
However, if value is t, the current `minibuffer-scroll-window' still
uses the `mode-line' face when minibuffer is active. */);
Vmode_line_in_non_selected_windows = Qt;
DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */);
Vother_window_scroll_buffer = Qnil;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment