emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-25 fb9a62c: * src/ftfont.c (ftfont_shape_by_flt): Pa


From: Paul Eggert
Subject: [Emacs-diffs] emacs-25 fb9a62c: * src/ftfont.c (ftfont_shape_by_flt): Parenthesize as per GNU style.
Date: Fri, 25 Mar 2016 18:00:27 +0000

branch: emacs-25
commit fb9a62c9c454df1a5c24b76b5d17ac13721f04d2
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    * src/ftfont.c (ftfont_shape_by_flt): Parenthesize as per GNU style.
---
 src/ftfont.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/ftfont.c b/src/ftfont.c
index b0b5320..7285aee 100644
--- a/src/ftfont.c
+++ b/src/ftfont.c
@@ -2600,8 +2600,8 @@ ftfont_shape_by_flt (Lisp_Object lgstring, struct font 
*font,
         "combining" is the sole FLT provided by the m17n-lib.  In
         addition, it is the sole FLT that can handle the other
         combining characters with non-OTF fonts.  */
-      if (0x300 <= c1 && c1 <= 0x36F
-         || (! otf  && CHAR_HAS_CATEGORY (c1, '^')))
+      if ((0x300 <= c1 && c1 <= 0x36F)
+         || (! otf && CHAR_HAS_CATEGORY (c1, '^')))
        flt = mflt_get (msymbol ("combining"));
     }
   if (! flt && ! otf)



reply via email to

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