From: Geoff Voelker Date: Sat, 2 May 1998 02:06:41 +0000 (+0000) Subject: (enum_font_cb2): Only ignore raster fonts when X-Git-Tag: emacs-20.3~1181 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=779a69a822aa3c30df037eeb5c535ce24c78267b;p=emacs.git (enum_font_cb2): Only ignore raster fonts when determining height and width. --- diff --git a/src/w32fns.c b/src/w32fns.c index bf536f7203d..20833978926 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -4808,7 +4808,7 @@ enum_font_cb2 (lplf, lptm, FontType, lpef) { char buf[100]; - if (!NILP (*(lpef->pattern)) && FontType == TRUETYPE_FONTTYPE) + if (!NILP (*(lpef->pattern)) && FontType != RASTER_FONTTYPE) { lplf->elfLogFont.lfHeight = lpef->logfont.lfHeight; lplf->elfLogFont.lfWidth = lpef->logfont.lfWidth;