]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change again
authorPo Lu <luangruo@yahoo.com>
Tue, 15 Nov 2022 13:42:59 +0000 (21:42 +0800)
committerPo Lu <luangruo@yahoo.com>
Tue, 15 Nov 2022 13:42:59 +0000 (21:42 +0800)
* src/frame.c (Freconsider_frame_fonts): Apply value of default
face again.  (bug#59283)

src/frame.c

index 6eb6f392ecc1c1a3745b75d0896fc7d1f398db5b..bfdd03e5013bc6389bb3d15995c7709190951088 100644 (file)
@@ -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;
 }