aboutsummaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorEli Zaretskii2002-02-12 18:51:31 +0000
committerEli Zaretskii2002-02-12 18:51:31 +0000
commitb9e58bf2ee4240046b3ddff5dc0a2209c890cb5f (patch)
treeb914dc3b45a94bf234dfc636e4895278daac76ac /man
parenta9d098e0e7436f1965e04e0381c50c2c67d83e2d (diff)
downloademacs-b9e58bf2ee4240046b3ddff5dc0a2209c890cb5f.tar.gz
emacs-b9e58bf2ee4240046b3ddff5dc0a2209c890cb5f.zip
(Faces): Document the mode-line-inactive face.
(Optional Mode Line): Document the mode-line-in-non-selected-windows variable.
Diffstat (limited to 'man')
-rw-r--r--man/display.texi24
1 files changed, 21 insertions, 3 deletions
diff --git a/man/display.texi b/man/display.texi
index 1e143bcd1f6..0b5683ac58b 100644
--- a/man/display.texi
+++ b/man/display.texi
@@ -100,9 +100,14 @@ faces:
100@item default 100@item default
101This face is used for ordinary text that doesn't specify any other face. 101This face is used for ordinary text that doesn't specify any other face.
102@item mode-line 102@item mode-line
103This face is used for mode lines. By default, it's drawn with shadows 103This face is used for the mode line of the currently selected window.
104for a ``raised'' effect on window systems, and drawn as the inverse of 104By default, it's drawn with shadows for a ``raised'' effect on window
105the default face on non-windowed terminals. @xref{Display Custom}. 105systems, and drawn as the inverse of the default face on non-windowed
106terminals. @xref{Display Custom}.
107@item mode-line-inactive
108Like @code{mode-line}, but used for mode lines of the windows other
109than the selected one (if @code{mode-line-in-non-selected-windows} is
110non-@code{nil}).
106@item header-line 111@item header-line
107Similar to @code{mode-line} for a window's header line. Most modes 112Similar to @code{mode-line} for a window's header line. Most modes
108don't use the header line, but the Info mode does. 113don't use the header line, but the Info mode does.
@@ -784,6 +789,19 @@ Alternatively, you can turn off the box attribute in your
784Emacs.mode-line.AttributeBox: off 789Emacs.mode-line.AttributeBox: off
785@end example 790@end example
786 791
792@cindex non-selected windows, mode line appearance
793@vindex mode-line-in-non-selected-windows
794 By default, the mode line of non-selected windows is displayed in a
795different face, called @code{mode-line-inactive}. You can control
796this behavior by customizing the value of the variable
797@code{mode-line-in-non-selected-windows}. If its value is
798non-@code{nil}, non-selected windows are displayed in the
799@code{mode-line-inactive} face. If the value is @code{t}, the
800selected window is displayed in the @code{mode-line} face even when
801you type at the minibuffer prompt. If the value is @code{nil}, all
802mode lines are displayed in the @code{mode-line} face, even when the
803window is not selected. The default is @code{t}.
804
787@node Text Display 805@node Text Display
788@section How Text Is Displayed 806@section How Text Is Displayed
789@cindex characters (in text) 807@cindex characters (in text)