emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99803: ftfont.c: Fix incorrect pa


From: Kenichi Handa
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99803: ftfont.c: Fix incorrect parentheses of #if condition for definining M17N_FLT_USE_NEW_FEATURE.
Date: Tue, 11 May 2010 20:17:41 +0900
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99803 [merge]
committer: Kenichi Handa <address@hidden>
branch nick: emacs-23
timestamp: Tue 2010-05-11 20:17:41 +0900
message:
  ftfont.c: Fix incorrect parentheses of #if condition for definining 
M17N_FLT_USE_NEW_FEATURE.
modified:
  src/ChangeLog
  src/ftfont.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-05-08 03:28:26 +0000
+++ b/src/ChangeLog     2010-05-11 11:15:29 +0000
@@ -1,3 +1,8 @@
+2010-05-11  Karel Klic  <address@hidden>  (tiny change)
+
+       * ftfont.c: Fix incorrect parentheses of #if condition for
+       definining M17N_FLT_USE_NEW_FEATURE.
+
 2010-05-07  Chong Yidong  <address@hidden>
 
        * Version 23.2 released.

=== modified file 'src/ftfont.c'
--- a/src/ftfont.c      2010-04-23 12:29:11 +0000
+++ b/src/ftfont.c      2010-05-11 11:15:29 +0000
@@ -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.  */


reply via email to

[Prev in Thread] Current Thread [Next in Thread]