aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2011-12-08 11:34:09 +0900
committerKenichi Handa <[email protected]>2011-12-08 11:34:09 +0900
commit745fff94a04a8a959a0c3cf1a1d2db8531d38576 (patch)
tree8772c77d45a314b8ce88d0d3cdcd1173a9cc012a /src
parent6e44397c4a000df50237a57ef089989e6c4bbc5e (diff)
ftfont.c (get_adstyle_property): Fix previous change (Bug#10233).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/ftfont.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9ee5ccc1f5..71b1b3fa82 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2011-12-08 Kenichi Handa <[email protected]>
+
+ * ftfont.c (get_adstyle_property): Fix previous change
+ (Bug#10233).
+
2011-12-07 Juanma Barranquero <[email protected]>
* w32.c (init_environment): If no_site_lisp, remove site-lisp
diff --git a/src/ftfont.c b/src/ftfont.c
index ec1a4ca6a7..bab97e44fa 100644
--- a/src/ftfont.c
+++ b/src/ftfont.c
@@ -166,8 +166,8 @@ get_adstyle_property (FcPattern *p)
#ifdef FC_FONTFORMAT
if ((FcPatternGetString (p, FC_FONTFORMAT, 0, &fcstr) == FcResultMatch)
- && (xstrcasecmp ((char *) fcstr, "bdf") != 0
- || xstrcasecmp ((char *) fcstr, "pcf") != 0))
+ && xstrcasecmp ((char *) fcstr, "bdf") != 0
+ && xstrcasecmp ((char *) fcstr, "pcf") != 0)
/* Not a BDF nor PCF font. */
return Qnil;
#endif