diff src/ftfont.c @ 108493:e5f3704cf67a

ftfont.c: Fix incorrect parentheses of #if condition for definining M17N_FLT_USE_NEW_FEATURE.
author Kenichi Handa <handa@etlken>
date Tue, 11 May 2010 20:15:29 +0900
parents 39d09d6f8dbc
children bcae1f83a33e
line wrap: on
line diff
--- a/src/ftfont.c	Mon May 10 13:14:21 2010 +0900
+++ b/src/ftfont.c	Tue May 11 20:15:29 2010 +0900
@@ -1578,8 +1578,8 @@
 
 #ifdef HAVE_M17N_FLT
 
-#if ((LIBOTF_MAJOR_VERSION > 1) || (LIBOTF_RELEASE_NUMBER >= 10) \
-     && (M17NLIB_MAJOR_VERSION > 1) || (M17NLIB_MINOR_VERSION >= 6))
+#if (((LIBOTF_MAJOR_VERSION > 1) || (LIBOTF_RELEASE_NUMBER >= 10))	\
+     && ((M17NLIB_MAJOR_VERSION > 1) || (M17NLIB_MINOR_VERSION >= 6)))
 /* We can use the new feature of libotf and m17n-flt to handle the
    character encoding scheme introduced in Unicode 5.1 and 5.2 for
    some Agian scripts.  */