From 64e00c183001e9bc0282b75ac99725ac24afca5e Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 11 Aug 2008 12:03:08 +0000 Subject: Add parentheses svn path=/trunk/libparserutils/; revision=5025 --- src/charset/aliases.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/charset') diff --git a/src/charset/aliases.c b/src/charset/aliases.c index 8ca24f4..68bc0ec 100644 --- a/src/charset/aliases.c +++ b/src/charset/aliases.c @@ -250,11 +250,11 @@ bool parserutils_charset_mibenum_is_unicode(uint16_t mibenum) } #define IS_PUNCT_OR_SPACE(x) \ - ((0x09 <= x && x <= 0x0D) || \ - (0x20 <= x && x <= 0x2F) || \ - (0x3A <= x && x <= 0x40) || \ - (0x5B <= x && x <= 0x60) || \ - (0x7B <= x && x <= 0x7E)) + ((0x09 <= (x) && (x) <= 0x0D) || \ + (0x20 <= (x) && (x) <= 0x2F) || \ + (0x3A <= (x) && (x) <= 0x40) || \ + (0x5B <= (x) && (x) <= 0x60) || \ + (0x7B <= (x) && (x) <= 0x7E)) /** -- cgit v1.2.3