From: tomo Date: Wed, 7 Jun 2000 09:08:02 +0000 (+0000) Subject: (Fdecode_big5_char): Use `Charset_ID' instead of `int'. X-Git-Tag: r21-2-34-tomo-Charset_ID~10 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=f3f33641ecdc5c61d28edbacf320a26c3165baed;p=chise%2Fxemacs-chise.git.1 (Fdecode_big5_char): Use `Charset_ID' instead of `int'. (decode_coding_iso2022): Likewise. --- diff --git a/src/file-coding.c b/src/file-coding.c index 8c54aaf..a4a1c90 100644 --- a/src/file-coding.c +++ b/src/file-coding.c @@ -3395,7 +3395,7 @@ Return the corresponding character. if (BYTE_BIG5_TWO_BYTE_1_P (b1) && BYTE_BIG5_TWO_BYTE_2_P (b2)) { - int leading_byte; + Charset_ID leading_byte; Lisp_Object charset; DECODE_BIG5 (b1, b2, leading_byte, c1, c2); charset = CHARSET_BY_LEADING_BYTE (leading_byte); @@ -4968,7 +4968,7 @@ decode_coding_iso2022 (Lstream *decoding, const unsigned char *src, else { /* Graphic characters */ Lisp_Object charset; - int lb; + Charset_ID lb; int reg; DECODE_HANDLE_EOL_TYPE (eol_type, c, flags, dst);