mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 15:56:35 -04:00
Minor fix for 'format-mode-line'
* src/xdisp.c (Fformat_mode_line): Treat 'default' exactly like nil. (Bug#81307)
This commit is contained in:
parent
1381479572
commit
422bf36847
|
|
@ -29040,6 +29040,8 @@ are the selected window and the WINDOW's buffer). */)
|
|||
face = EQ (window, selected_window)
|
||||
? Qmode_line_active
|
||||
: Qmode_line_inactive;
|
||||
else if (EQ (face, Qdefault))
|
||||
face = Qnil;
|
||||
|
||||
old_buffer = current_buffer;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue