diff options
author | Manish Singh <yosh@gimp.org> | 2005-07-27 22:14:46 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 2005-07-27 22:14:46 +0000 |
commit | 45acfe9ada6cd6b75ded6b4b32d858e92c92082a (patch) | |
tree | 27b9f5adab95c3a0fb1e7d2129479f6aa8ba4315 /pango/pango-utils.c | |
parent | 68e152ccd38eda90634ca65ebd88f3016df9281a (diff) | |
download | pango-45acfe9ada6cd6b75ded6b4b32d858e92c92082a.tar.gz |
put parens around bitwise &, to appease gcc.
2005-07-26 Manish Singh <yosh@gimp.org>
* pango/pango-utils.c (pango_is_zero_width): put parens around bitwise
&, to appease gcc.
Diffstat (limited to 'pango/pango-utils.c')
-rw-r--r-- | pango/pango-utils.c | 2 |
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) |