diff options
| author | Paul Eggert | 2016-03-25 10:58:52 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-03-25 11:00:23 -0700 |
| commit | fb9a62c9c454df1a5c24b76b5d17ac13721f04d2 (patch) | |
| tree | 26e9833f322bd9e06ce46fc1890e69a9d6153a07 /src | |
| parent | 1e1ea22e91b8312c76eb8768bf995ae6129ac16a (diff) | |
| download | emacs-fb9a62c9c454df1a5c24b76b5d17ac13721f04d2.tar.gz emacs-fb9a62c9c454df1a5c24b76b5d17ac13721f04d2.zip | |
* src/ftfont.c (ftfont_shape_by_flt): Parenthesize as per GNU style.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ftfont.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, | |||
| 2600 | "combining" is the sole FLT provided by the m17n-lib. In | 2600 | "combining" is the sole FLT provided by the m17n-lib. In |
| 2601 | addition, it is the sole FLT that can handle the other | 2601 | addition, it is the sole FLT that can handle the other |
| 2602 | combining characters with non-OTF fonts. */ | 2602 | combining characters with non-OTF fonts. */ |
| 2603 | if (0x300 <= c1 && c1 <= 0x36F | 2603 | if ((0x300 <= c1 && c1 <= 0x36F) |
| 2604 | || (! otf && CHAR_HAS_CATEGORY (c1, '^'))) | 2604 | || (! otf && CHAR_HAS_CATEGORY (c1, '^'))) |
| 2605 | flt = mflt_get (msymbol ("combining")); | 2605 | flt = mflt_get (msymbol ("combining")); |
| 2606 | } | 2606 | } |
| 2607 | if (! flt && ! otf) | 2607 | if (! flt && ! otf) |