# HG changeset patch # User Kenichi Handa # Date 1273576661 -32400 # Node ID 3e8d818fe3363a47c2839340a0acadce6b7c0347 # Parent 4d25cedac124c84ad6629b5f835f42d743169e36# Parent e5f3704cf67a0382db78ec684c2f2b53a10699e7 ftfont.c: Fix incorrect parentheses of #if condition for definining M17N_FLT_USE_NEW_FEATURE. diff -r 4d25cedac124 -r 3e8d818fe336 src/ChangeLog --- a/src/ChangeLog Sun May 09 17:37:59 2010 -0700 +++ b/src/ChangeLog Tue May 11 20:17:41 2010 +0900 @@ -1,3 +1,8 @@ +2010-05-11 Karel Klic (tiny change) + + * ftfont.c: Fix incorrect parentheses of #if condition for + definining M17N_FLT_USE_NEW_FEATURE. + 2010-05-07 Chong Yidong * Version 23.2 released. diff -r 4d25cedac124 -r 3e8d818fe336 src/ftfont.c --- a/src/ftfont.c Sun May 09 17:37:59 2010 -0700 +++ b/src/ftfont.c Tue May 11 20:17:41 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. */