emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/window.c


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/window.c
Date: Wed, 13 Feb 2002 17:41:12 -0500

Index: emacs/src/window.c
diff -c emacs/src/window.c:1.401 emacs/src/window.c:1.402
*** emacs/src/window.c:1.401    Mon Feb 11 09:42:16 2002
--- emacs/src/window.c  Wed Feb 13 17:41:12 2002
***************
*** 133,144 ****
  
  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. */
  
--- 133,142 ----
  
  Lisp_Object Vtemp_buffer_show_function;
  
! /* Non-zero means to use mode-line-inactive face in all windows but the
!    selected-window and the minibuffer-scroll-window when the
!    minibuffer is active.  */
! int mode_line_in_non_selected_windows;
  
  /* If a window gets smaller than either of these, it is removed. */
  
***************
*** 5803,5813 ****
               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.  */);
--- 5801,5811 ----
               doc: /* Non-nil means it is the window that C-M-v in minibuffer 
should scroll.  */);
    Vminibuf_scroll_window = Qnil;
  
!   DEFVAR_BOOL ("mode-line-in-non-selected-windows", 
&mode_line_in_non_selected_windows,
               doc: /* Non-nil means to use `mode-line-inactive' face in 
non-selected windows.
! If the minibuffer is active, the `minibuffer-scroll-window' mode line
! is displayed in the `mode-line' face.  */);
!   mode_line_in_non_selected_windows = 1;
  
    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.  */);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]