[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/xfaces.c,v
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] Changes to emacs/src/xfaces.c,v |
Date: |
Fri, 15 Aug 2008 21:32:49 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Chong Yidong <cyd> 08/08/15 21:32:49
Index: xfaces.c
===================================================================
RCS file: /sources/emacs/emacs/src/xfaces.c,v
retrieving revision 1.411
retrieving revision 1.412
diff -u -b -r1.411 -r1.412
--- xfaces.c 1 Aug 2008 23:40:13 -0000 1.411
+++ xfaces.c 15 Aug 2008 21:32:48 -0000 1.412
@@ -4974,7 +4974,9 @@
if (!default_face)
abort ();
- get_lface_attributes (f, symbol, symbol_attrs, signal_p, 0);
+ if (!get_lface_attributes (f, symbol, symbol_attrs, signal_p, 0))
+ return -1;
+
bcopy (default_face->lface, attrs, sizeof attrs);
merge_face_vectors (f, symbol_attrs, attrs, 0);
return lookup_face (f, attrs);
@@ -6533,10 +6535,10 @@
if (face_id < 0 || face_id >= lface_id_to_name_size)
return base_face_id;
face_name = lface_id_to_name[face_id];
- face_id = lookup_derived_face (f, face_name, base_face_id, 1);
- if (face_id >= 0)
- return face_id;
- return base_face_id;
+ /* When called during make-frame, lookup_derived_face may fail
+ if the faces are uninitialized. Don't signal an error. */
+ face_id = lookup_derived_face (f, face_name, base_face_id, 0);
+ return (face_id >= 0 ? face_id : base_face_id);
}
/* Begin with attributes from the base face. */
- [Emacs-diffs] Changes to emacs/src/xfaces.c,v, Adrian Robert, 2008/08/01
- [Emacs-diffs] Changes to emacs/src/xfaces.c,v, Adrian Robert, 2008/08/01
- [Emacs-diffs] Changes to emacs/src/xfaces.c,v, Adrian Robert, 2008/08/01
- [Emacs-diffs] Changes to emacs/src/xfaces.c,v, Juanma Barranquero, 2008/08/01
- [Emacs-diffs] Changes to emacs/src/xfaces.c,v,
Chong Yidong <=
- [Emacs-diffs] Changes to emacs/src/xfaces.c,v, Chong Yidong, 2008/08/21