From: Paul Eggert Date: Fri, 25 Mar 2016 17:58:52 +0000 (-0700) Subject: * src/ftfont.c (ftfont_shape_by_flt): Parenthesize as per GNU style. X-Git-Tag: emacs-25.0.93~89^2~12 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fb9a62c9c454df1a5c24b76b5d17ac13721f04d2;p=emacs.git * src/ftfont.c (ftfont_shape_by_flt): Parenthesize as per GNU style. --- diff --git a/src/ftfont.c b/src/ftfont.c index b0b532015c2..7285aee9bd4 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)