comparison src/coding.c @ 105179:8143cdf4806f

(decode_coding_iso_2022): Fix operator precedence.
author Andreas Schwab <schwab@linux-m68k.org>
date Thu, 24 Sep 2009 08:18:40 +0000
parents bc74846b9a54
children 68dd71358159
comparison
equal deleted inserted replaced
105178:d0f5b10b5fb4 105179:8143cdf4806f
3858 goto invalid_code; 3858 goto invalid_code;
3859 DECODE_COMPOSITION_END (); 3859 DECODE_COMPOSITION_END ();
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
3867 left-to-right, and nozero means right-to-left. */ 3867 left-to-right, and nozero means right-to-left. */
3868 ONE_MORE_BYTE (c1); 3868 ONE_MORE_BYTE (c1);