Mercurial > emacs
comparison src/window.c @ 43241:5558e7582f1f
(Vmode_line_in_non_selected_windows): New variable.
(syms_of_window): DEFVAR_LISP it.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Mon, 11 Feb 2002 14:42:16 +0000 |
parents | 87fe94f01b8e |
children | a4ea76de57c9 |
comparison
equal
deleted
inserted
replaced
43240:375dd16928a6 | 43241:5558e7582f1f |
---|---|
130 Lisp_Object Vother_window_scroll_buffer; | 130 Lisp_Object Vother_window_scroll_buffer; |
131 | 131 |
132 /* Non-nil means it's function to call to display temp buffers. */ | 132 /* Non-nil means it's function to call to display temp buffers. */ |
133 | 133 |
134 Lisp_Object Vtemp_buffer_show_function; | 134 Lisp_Object Vtemp_buffer_show_function; |
135 | |
136 /* Nil means to use mode-line face in all windows. | |
137 t means to use mode-line-inactive face in all windows but the | |
138 selected-window and the minibuffer-scroll-window. | |
139 Any other value means to use mode-line-inactive face in all | |
140 non-selected windows (including minibuffer-scroll-window. */ | |
141 Lisp_Object Vmode_line_in_non_selected_windows; | |
135 | 142 |
136 /* If a window gets smaller than either of these, it is removed. */ | 143 /* If a window gets smaller than either of these, it is removed. */ |
137 | 144 |
138 int window_min_height; | 145 int window_min_height; |
139 int window_min_width; | 146 int window_min_width; |
5793 Veven_window_heights = Qt; | 5800 Veven_window_heights = Qt; |
5794 | 5801 |
5795 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window, | 5802 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window, |
5796 doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */); | 5803 doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */); |
5797 Vminibuf_scroll_window = Qnil; | 5804 Vminibuf_scroll_window = Qnil; |
5805 | |
5806 DEFVAR_LISP ("mode-line-in-non-selected-windows", &Vmode_line_in_non_selected_windows, | |
5807 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows. | |
5808 However, if value is t, the current `minibuffer-scroll-window' still | |
5809 uses the `mode-line' face when minibuffer is active. */); | |
5810 Vmode_line_in_non_selected_windows = Qt; | |
5798 | 5811 |
5799 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer, | 5812 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer, |
5800 doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */); | 5813 doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */); |
5801 Vother_window_scroll_buffer = Qnil; | 5814 Vother_window_scroll_buffer = Qnil; |
5802 | 5815 |