From: tomo Date: Thu, 17 Jun 1999 10:48:51 +0000 (+0000) Subject: (rep_bytes_by_first_byte): Modify for conventional MULE X-Git-Tag: r21-2-16-utf-2000-0_3-1~8 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=128abcd8b072996827dd89688cd7ba5f61910550;p=chise%2Fxemacs-chise.git.1 (rep_bytes_by_first_byte): Modify for conventional MULE representation. (syms_of_mule_charset): Update to 0.3 (Imamiya). --- diff --git a/src/mule-charset.c b/src/mule-charset.c index d2021a1..fcef79f 100644 --- a/src/mule-charset.c +++ b/src/mule-charset.c @@ -98,7 +98,11 @@ Bytecount rep_bytes_by_first_byte[0xA0] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 0x80 - 0x8f are for Dimension-1 official charsets */ +#ifdef CHAR_IS_UCS4 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, +#else + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, +#endif /* 0x90 - 0x9d are for Dimension-2 official charsets */ /* 0x9e is for Dimension-1 private charsets */ /* 0x9f is for Dimension-2 private charsets */ @@ -1386,7 +1390,7 @@ syms_of_mule_charset (void) defsymbol (&Qcomposite, "composite"); #ifdef UTF2000 - Vutf_2000_version = build_string("0.2 (JR NAMBA)"); + Vutf_2000_version = build_string("0.3 (Imamiya)"); DEFVAR_LISP ("utf-2000-version", &Vutf_2000_version /* Version number of UTF-2000. */ );