summaryrefslogtreecommitdiff
path: root/pango
diff options
context:
space:
mode:
Diffstat (limited to 'pango')
-rw-r--r--pango/pango-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-utils.c b/pango/pango-utils.c
index 18ef8924..32d93828 100644
--- a/pango/pango-utils.c
+++ b/pango/pango-utils.c
@@ -1742,7 +1742,7 @@ pango_is_zero_width (gunichar ch)
* 202E RIGHT-TO-LEFT OVERRIDE
* FEFF ZERO WIDTH NO-BREAK SPACE
*/
- return (ch & ~(gunichar)0x003F == 0x2000 && (
+ return ((ch & ~(gunichar)0x003F) == 0x2000 && (
(ch >= 0x200B && ch <= 0x200F) ||
ch == 0x2028 ||
(ch >= 0x202A && ch <= 0x202E)