comparison src/coding.c @ 109716:df8e0cd18128

Merge changes from emacs-23 branch
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 08 Aug 2010 17:12:29 -0400
parents 228a5fa4eda0 62d9702eb261
children 77fb60d4233b
comparison
equal deleted inserted replaced
109688:3eb5d5708703 109716:df8e0cd18128
3900 They may be decoded by post-read-conversion. */ 3900 They may be decoded by post-read-conversion. */
3901 int dim, M, L; 3901 int dim, M, L;
3902 int size; 3902 int size;
3903 3903
3904 ONE_MORE_BYTE (dim); 3904 ONE_MORE_BYTE (dim);
3905 if (dim < 0 || dim > 4) 3905 if (dim < '0' || dim > '4')
3906 goto invalid_code; 3906 goto invalid_code;
3907 ONE_MORE_BYTE (M); 3907 ONE_MORE_BYTE (M);
3908 if (M < 128) 3908 if (M < 128)
3909 goto invalid_code; 3909 goto invalid_code;
3910 ONE_MORE_BYTE (L); 3910 ONE_MORE_BYTE (L);