From: Eli Zaretskii Date: Fri, 17 Dec 2010 15:38:37 +0000 (+0200) Subject: Fix change that fixed bug #7587. X-Git-Tag: emacs-pretest-23.2.92~49 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=30d621a239c131219cade1d57742c5e852bcc4f9;p=emacs.git Fix change that fixed bug #7587. xdisp.c (Fformat_mode_line): Fix last change. --- diff --git a/src/ChangeLog b/src/ChangeLog index 4e56c1da05d..f7022e4a350 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-12-17 Eli Zaretskii + + * xdisp.c (Fformat_mode_line): Fix last change. + 2010-12-16 Chong Yidong * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic diff --git a/src/xdisp.c b/src/xdisp.c index 29a1f346b88..7308e163c7e 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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;