diff options
| author | Andreas Schwab | 2009-09-24 08:18:40 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2009-09-24 08:18:40 +0000 |
| commit | de59072a63cd58444637c070e91074c281dd1359 (patch) | |
| tree | 77d529f7283cb15ae0d78a89ff5f40b44139964c | |
| parent | 2157a2be64ad09c66f4bd9ee4e918e2db542def0 (diff) | |
| download | emacs-de59072a63cd58444637c070e91074c281dd1359.tar.gz emacs-de59072a63cd58444637c070e91074c281dd1359.zip | |
(decode_coding_iso_2022): Fix operator precedence.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/coding.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9b3447601c0..5375574b2a2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-09-24 Andreas Schwab <schwab@redhat.com> | ||
| 2 | |||
| 3 | * coding.c (decode_coding_iso_2022): Fix operator precedence. | ||
| 4 | |||
| 1 | 2009-09-24 Juanma Barranquero <lekktu@gmail.com> | 5 | 2009-09-24 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * dired.c (Fdirectory_files): Fix typo in docstring. | 7 | * dired.c (Fdirectory_files): Fix typo in docstring. |
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 |