]> 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:15:08 +0000 (06:15 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 26 Jun 2009 06:15:08 +0000 (06:15 +0000)
the arg FORCE_SYMBOL.

src/ChangeLog
src/ftfont.c

index e3ae880523516b2b0ba8849e3cac20d80531a125..a950b61763453f5ddd20c5968e165ffebde0fedd 100644 (file)
@@ -1,3 +1,16 @@
+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
+       in a fallback font-group, make it the first element of the group.
+       (fontset_get_font_group): Return 0 if no font-group is set for C.
+       (fontset_font): Record the availability of a font for C both in
+       the realized fontsets of the current one and the default one.
+
 2009-06-23  Jim Meyering  <meyering@redhat.com>
 
        * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt): Use
index 25545d1a08f5cf871cf8d71b77f0863f19769ff0..35cce12ea96da577e9858d5bea1d0110bbd1c932 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;