* src/ftfont.c (ftfont_shape_by_flt): Parenthesize as per GNU style.
This commit is contained in:
parent
1e1ea22e91
commit
fb9a62c9c4
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue