aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2005-01-17 12:09:23 +0000
committerKenichi Handa2005-01-17 12:09:23 +0000
commit50d6ed8abb95e897d8278a0e8c36bf8d7dbec490 (patch)
tree6b4add8c09be16688d9e3021bc6130fd7506d490 /src
parentf65872e080c2cf60135e4341c38bd862184f2115 (diff)
downloademacs-50d6ed8abb95e897d8278a0e8c36bf8d7dbec490.tar.gz
emacs-50d6ed8abb95e897d8278a0e8c36bf8d7dbec490.zip
(Fformat_mode_line): Fix argument to lookup_named_face.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index a8b8315e251..950ec6c57b2 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -16125,7 +16125,7 @@ are the selected window and the window's buffer). */)
16125 { 16125 {
16126 if (EQ (face, Qt)) 16126 if (EQ (face, Qt))
16127 face = (EQ (window, selected_window) ? Qmode_line : Qmode_line_inactive); 16127 face = (EQ (window, selected_window) ? Qmode_line : Qmode_line_inactive);
16128 face_id = lookup_named_face (XFRAME (WINDOW_FRAME (w)), face, 0, 0); 16128 face_id = lookup_named_face (XFRAME (WINDOW_FRAME (w)), face, 0);
16129 } 16129 }
16130 16130
16131 if (face_id < 0) 16131 if (face_id < 0)