diff options
| author | Kenichi Handa | 2010-08-06 17:11:19 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-08-06 17:11:19 +0900 |
| commit | 7a84eee5b745ad577d414158716ffe2ee487a117 (patch) | |
| tree | 8941277791414c9648b79f304b5d27de0e46eb76 /src/coding.c | |
| parent | faa28da9b740a4b5f297fc215d79a66d71bf6f78 (diff) | |
| download | emacs-7a84eee5b745ad577d414158716ffe2ee487a117.tar.gz emacs-7a84eee5b745ad577d414158716ffe2ee487a117.zip | |
Improve the encoding by compound-text-with-extensions.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index bdc37cb7c53..aef80f5cc80 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -3935,7 +3935,7 @@ decode_coding_iso_2022 (coding) | |||
| 3935 | int size; | 3935 | int size; |
| 3936 | 3936 | ||
| 3937 | ONE_MORE_BYTE (dim); | 3937 | ONE_MORE_BYTE (dim); |
| 3938 | if (dim < 0 || dim > 4) | 3938 | if (dim < '0' || dim > '4') |
| 3939 | goto invalid_code; | 3939 | goto invalid_code; |
| 3940 | ONE_MORE_BYTE (M); | 3940 | ONE_MORE_BYTE (M); |
| 3941 | if (M < 128) | 3941 | if (M < 128) |