From: Richard M. Stallman Date: Wed, 22 Nov 1995 12:13:35 +0000 (+0000) Subject: (Fset_face_attribute_internal) [MSDOS]: Set font field to 1. X-Git-Tag: emacs-19.34~2234 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=88d9cecbc62b1eaaa66bc4fda97ba3582456b4b4;p=emacs.git (Fset_face_attribute_internal) [MSDOS]: Set font field to 1. --- diff --git a/src/xfaces.c b/src/xfaces.c index 738acbd915c..d99ce172d3c 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -1156,7 +1156,9 @@ DEFUN ("set-face-attribute-internal", Fset_face_attribute_internal, if (EQ (attr_name, intern ("font"))) { #if defined (MSDOS) && !defined (HAVE_X_WINDOWS) - face->font = 0; /* The one and only font. */ + /* The one and only font. Must *not* be zero (which + is taken to mean an unused face nowadays). */ + face->font = (XFontStruct *)1 ; #else XFontStruct *font = load_font (f, attr_value); if (face->font != f->output_data.x->font)