Fix change that fixed bug #7587.

xdisp.c (Fformat_mode_line): Fix last change.
This commit is contained in:
Eli Zaretskii 2010-12-17 17:38:37 +02:00
parent 3c505d3124
commit 30d621a239
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2010-12-17 Eli Zaretskii <eliz@gnu.org>
* xdisp.c (Fformat_mode_line): Fix last change.
2010-12-16 Chong Yidong <cyd@stupidchicken.com>
* xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic

View file

@ -17928,7 +17928,7 @@ are the selected window and the window's buffer). */)
: EQ (face, Qt) ? (EQ (window, selected_window)
? MODE_LINE_FACE_ID : MODE_LINE_INACTIVE_FACE_ID)
: EQ (face, Qmode_line) ? MODE_LINE_FACE_ID
: EQ (face, Qmode_line_inactive) ? MODE_LINE_FACE_ID
: EQ (face, Qmode_line_inactive) ? MODE_LINE_INACTIVE_FACE_ID
: EQ (face, Qheader_line) ? HEADER_LINE_FACE_ID
: EQ (face, Qtool_bar) ? TOOL_BAR_FACE_ID
: DEFAULT_FACE_ID;