From: Po Lu Date: Tue, 15 Nov 2022 13:42:59 +0000 (+0800) Subject: Fix last change again X-Git-Tag: emacs-29.0.90~1616^2~156 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c63d77ac6b10dc453d08afc852debc6a9a3cde36;p=emacs.git Fix last change again * src/frame.c (Freconsider_frame_fonts): Apply value of default face again. (bug#59283) --- diff --git a/src/frame.c b/src/frame.c index 6eb6f392ecc..bfdd03e5013 100644 --- a/src/frame.c +++ b/src/frame.c @@ -5962,9 +5962,16 @@ have changed. */) f = decode_window_system_frame (frame); + /* First, call this to reinitialize any font backend specific + stuff. */ + if (FRAME_RIF (f)->default_font_parameter) FRAME_RIF (f)->default_font_parameter (f, Qnil); + /* Now call this to apply the existing value(s) of the `default' + face. */ + call1 (Qface_set_after_frame_default, frame); + return Qnil; }