]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_to_w32_font): Do not filter out italic fonts, as new
authorJason Rumney <jasonr@gnu.org>
Sat, 25 Nov 2000 14:55:34 +0000 (14:55 +0000)
committerJason Rumney <jasonr@gnu.org>
Sat, 25 Nov 2000 14:55:34 +0000 (14:55 +0000)
redisplay handles them properly.

src/w32fns.c

index 6ab167a32404a6e6c9877ad0ce6960d2da279e72..591a7543229eed9fca37f75650570043ef85bacc 100644 (file)
@@ -6209,8 +6209,7 @@ x_to_w32_font (lpxstr, lplogfont)
 
       fields--;
 
-      if (!NILP (Vw32_enable_synthesized_fonts))
-       lplogfont->lfItalic = (fields > 0 && slant == 'i');
+      lplogfont->lfItalic = (fields > 0 && slant == 'i');
 
       fields--;