emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/frame.c,v


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/frame.c,v
Date: Fri, 20 Jun 2008 01:53:34 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        08/06/20 01:53:33

Index: frame.c
===================================================================
RCS file: /sources/emacs/emacs/src/frame.c,v
retrieving revision 1.376
retrieving revision 1.377
diff -u -b -r1.376 -r1.377
--- frame.c     19 Jun 2008 10:35:03 -0000      1.376
+++ frame.c     20 Jun 2008 01:53:31 -0000      1.377
@@ -3400,7 +3400,13 @@
   if (FRAME_FACE_CACHE (f))
     {
       XSETFRAME (frame, f);
-      call1 (Qface_set_after_frame_default, frame);
+      /* We used to call face-set-after-frame-default here, but it leads to
+        recursive calls (since that function can set the `default' face's
+        font which in turns changes the frame's `font' parameter).
+        Also I don't know what this call is meant to do, but it seems the
+        wrong way to do it anyway (it does a lot more work than what seems
+        reasonable in response to a change to `font').  */
+      /* call1 (Qface_set_after_frame_default, frame); */
     }
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]