Mercurial > hg > xemacs-beta
diff src/faces.h @ 3676:3ef0aaf3dc34
[xemacs-hg @ 2006-11-12 13:40:04 by aidan]
Prevent a crash if the ASCII charset registries match nothing.
author | aidan |
---|---|
date | Sun, 12 Nov 2006 13:40:09 +0000 |
parents | 98af8a976fc3 |
children | d95c102a96d3 e0db3c197671 |
line wrap: on
line diff
--- a/src/faces.h Sat Nov 11 22:51:05 2006 +0000 +++ b/src/faces.h Sun Nov 12 13:40:09 2006 +0000 @@ -386,6 +386,10 @@ FACE_PROPERTY_INSTANCE (face, Qforeground, domain, 0, Qzero) #define FACE_BACKGROUND(face, domain) \ FACE_PROPERTY_INSTANCE (face, Qbackground, domain, 0, Qzero) + +/* Calling this function on the default face with the ASCII character set + may delete any X11 frames; see the code at the end of + x_find_charset_font. */ #define FACE_FONT(face, domain, charset) \ face_property_matching_instance (face, Qfont, charset, domain, \ ERROR_ME_DEBUG_WARN, 0, Qzero, \