]> git.eshelyaron.com Git - emacs.git/commitdiff
(get_adstyle_property): Call font_intern_prop with 1 as
authorKenichi Handa <handa@m17n.org>
Fri, 26 Jun 2009 06:16:07 +0000 (06:16 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 26 Jun 2009 06:16:07 +0000 (06:16 +0000)
the arg FORCE_SYMBOL.

src/ChangeLog
src/ftfont.c

index 77345b7fafe7c1d41dd35e04b4d9604f9b45ca20..c1511e9c24389073bb71386cb9c4e02d4ae2565b 100644 (file)
@@ -1,3 +1,8 @@
+2009-06-26  Peter Jolly  <peter@jollys.org>  (tiny change)
+
+       * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
+       the arg FORCE_SYMBOL.
+
 2009-06-25  Kenichi Handa  <handa@m17n.org>
 
        * fontset.c (fontset_find_font): When a usable rfont_def is found
index 70c1797dce06cd50f4d0c3edae968c6ba82e7e53..789e6a7f685ba6b1f30d0a586bb714240adb397a 100644 (file)
@@ -177,7 +177,7 @@ get_adstyle_property (FcPattern *p)
       || xstrcasecmp (str, "Oblique") == 0
       || xstrcasecmp (str, "Italic") == 0)
     return Qnil;
-  adstyle = font_intern_prop (str, end - str, 0);
+  adstyle = font_intern_prop (str, end - str, 1);
   if (font_style_to_value (FONT_WIDTH_INDEX, adstyle, 0) >= 0)
     return Qnil;
   return adstyle;