# HG changeset patch # User Miles Bader # Date 1118028368 0 # Node ID 6141b4c28957357fc03ab2ef6f02d680527de2e0 # Parent 01137c1fdbe9eeed651ce559d5669c50ce02902c Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-58 src/xfaces.c (Finternal_lisp_face_equal_p): Restore calculation of frame diff -r 01137c1fdbe9 -r 6141b4c28957 src/ChangeLog.unicode --- a/src/ChangeLog.unicode Mon Jun 06 02:39:45 2005 +0000 +++ b/src/ChangeLog.unicode Mon Jun 06 03:26:08 2005 +0000 @@ -1,3 +1,8 @@ +2005-06-05 Miles Bader + + * xfaces.c (Finternal_lisp_face_equal_p): Restore previously + removed calculation of frame `f', as it's now used. + 2005-05-22 YAMAMOTO Mitsuharu * macterm.c (x_font_name_to_mac_font_name): Sync with trunk diff -r 01137c1fdbe9 -r 6141b4c28957 src/xfaces.c --- a/src/xfaces.c Mon Jun 06 02:39:45 2005 +0000 +++ b/src/xfaces.c Mon Jun 06 03:26:08 2005 +0000 @@ -5135,8 +5135,18 @@ Lisp_Object face1, face2, frame; { int equal_p; + struct frame *f; Lisp_Object lface1, lface2; + if (EQ (frame, Qt)) + f = NULL; + else + /* Don't use check_x_frame here because this function is called + before X frames exist. At that time, if FRAME is nil, + selected_frame will be used which is the frame dumped with + Emacs. That frame is not an X frame. */ + f = frame_or_selected_frame (frame, 2); + lface1 = lface_from_face_name (f, face1, 1); lface2 = lface_from_face_name (f, face2, 1); equal_p = lface_equal_p (XVECTOR (lface1)->contents,