aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorAndreas Schwab2009-09-24 08:18:40 +0000
committerAndreas Schwab2009-09-24 08:18:40 +0000
commitde59072a63cd58444637c070e91074c281dd1359 (patch)
tree77d529f7283cb15ae0d78a89ff5f40b44139964c /src/coding.c
parent2157a2be64ad09c66f4bd9ee4e918e2db542def0 (diff)
downloademacs-de59072a63cd58444637c070e91074c281dd1359.tar.gz
emacs-de59072a63cd58444637c070e91074c281dd1359.zip
(decode_coding_iso_2022): Fix operator precedence.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index 388b4b833c4..405284f778b 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -3860,7 +3860,7 @@ decode_coding_iso_2022 (coding)
3860 continue; 3860 continue;
3861 3861
3862 case '[': /* specification of direction */ 3862 case '[': /* specification of direction */
3863 if (! CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION) 3863 if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_DIRECTION))
3864 goto invalid_code; 3864 goto invalid_code;
3865 /* For the moment, nested direction is not supported. 3865 /* For the moment, nested direction is not supported.
3866 So, `coding->mode & CODING_MODE_DIRECTION' zero means 3866 So, `coding->mode & CODING_MODE_DIRECTION' zero means