From 88d9cecbc62b1eaaa66bc4fda97ba3582456b4b4 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 22 Nov 1995 12:13:35 +0000 Subject: [PATCH] (Fset_face_attribute_internal) [MSDOS]: Set font field to 1. --- src/xfaces.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- 2.39.2