]> git.eshelyaron.com Git - emacs.git/commitdiff
(choose_face_font): Make sure *NEEDS_OVERSTRIKE is always set.
authorMiles Bader <miles@gnu.org>
Thu, 3 Apr 2003 01:40:58 +0000 (01:40 +0000)
committerMiles Bader <miles@gnu.org>
Thu, 3 Apr 2003 01:40:58 +0000 (01:40 +0000)
src/ChangeLog
src/xfaces.c

index 1e9d6c12ee617d14b7375addffda1f6642533ef3..ed6eb184e8c1157a38cec2199a8faee61be4ba29 100644 (file)
@@ -1,3 +1,8 @@
+2003-04-03  Miles Bader  <miles@gnu.org>
+
+       * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
+       always set.
+
 2003-04-01  Dave Love  <fx@gnu.org>
 
        * xfns.c (xpm_lookup_color): Grok "opaque".
index 71c2915e8068eae68523a4ea3d9e79042397944e..ab91fc24de97055545b4be260fcc826b2fd07b45 100644 (file)
@@ -1,5 +1,5 @@
 /* xfaces.c -- "Face" primitives.
-   Copyright (C) 1993, 1994, 1998, 1999, 2000, 2001, 2002
+   Copyright (C) 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2003
    Free Software Foundation.
 
 This file is part of GNU Emacs.
@@ -6439,6 +6439,9 @@ choose_face_font (f, attrs, fontset, c, needs_overstrike)
   struct font_name *fonts;
   int nfonts, width_ratio;
 
+  if (needs_overstrike)
+    *needs_overstrike = 0;
+
   /* Get (foundry and) family name and registry (and encoding) name of
      a font for C.  */
   pattern = fontset_font_pattern (f, fontset, c);