diff options
| author | Kim F. Storm | 2002-02-13 22:41:12 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2002-02-13 22:41:12 +0000 |
| commit | cc91894c70d24a0b78528197000551a0237a29de (patch) | |
| tree | 3ea2d344e1f30d4135a08b8b1e215af4a0ff7ca1 /src | |
| parent | c3114036a40216a1d497bd1fb4dcc84b09290798 (diff) | |
| download | emacs-cc91894c70d24a0b78528197000551a0237a29de.tar.gz emacs-cc91894c70d24a0b78528197000551a0237a29de.zip | |
(Vmode_line_in_non_selected_windows): Removed.
(mode_line_in_non_selected_windows): New variable.
(syms_of_window): DEFVAR_BOOL it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/window.c b/src/window.c index 80a93f12e63..d797ff75627 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -133,12 +133,10 @@ Lisp_Object Vother_window_scroll_buffer; | |||
| 133 | 133 | ||
| 134 | Lisp_Object Vtemp_buffer_show_function; | 134 | Lisp_Object Vtemp_buffer_show_function; |
| 135 | 135 | ||
| 136 | /* Nil means to use mode-line face in all windows. | 136 | /* Non-zero means to use mode-line-inactive face in all windows but the |
| 137 | t means to use mode-line-inactive face in all windows but the | 137 | selected-window and the minibuffer-scroll-window when the |
| 138 | selected-window and the minibuffer-scroll-window. | 138 | minibuffer is active. */ |
| 139 | Any other value means to use mode-line-inactive face in all | 139 | int mode_line_in_non_selected_windows; |
| 140 | non-selected windows (including minibuffer-scroll-window. */ | ||
| 141 | Lisp_Object Vmode_line_in_non_selected_windows; | ||
| 142 | 140 | ||
| 143 | /* If a window gets smaller than either of these, it is removed. */ | 141 | /* If a window gets smaller than either of these, it is removed. */ |
| 144 | 142 | ||
| @@ -5803,11 +5801,11 @@ If nil, `display-buffer' will leave the window configuration alone. */); | |||
| 5803 | doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */); | 5801 | doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */); |
| 5804 | Vminibuf_scroll_window = Qnil; | 5802 | Vminibuf_scroll_window = Qnil; |
| 5805 | 5803 | ||
| 5806 | DEFVAR_LISP ("mode-line-in-non-selected-windows", &Vmode_line_in_non_selected_windows, | 5804 | DEFVAR_BOOL ("mode-line-in-non-selected-windows", &mode_line_in_non_selected_windows, |
| 5807 | doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows. | 5805 | 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 | 5806 | If the minibuffer is active, the `minibuffer-scroll-window' mode line |
| 5809 | uses the `mode-line' face when minibuffer is active. */); | 5807 | is displayed in the `mode-line' face. */); |
| 5810 | Vmode_line_in_non_selected_windows = Qt; | 5808 | mode_line_in_non_selected_windows = 1; |
| 5811 | 5809 | ||
| 5812 | DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer, | 5810 | DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer, |
| 5813 | doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */); | 5811 | doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */); |