From 128abcd8b072996827dd89688cd7ba5f61910550 Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 17 Jun 1999 10:48:51 +0000 Subject: [PATCH] (rep_bytes_by_first_byte): Modify for conventional MULE representation. (syms_of_mule_charset): Update to 0.3 (Imamiya). --- src/mule-charset.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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. */ ); -- 1.7.10.4