From: Kenichi Handa Date: Tue, 21 May 2002 05:39:08 +0000 (+0000) Subject: If CODE1 is nil, use the minimum code of the charset. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~804 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d47073ca4c3dfa57b0caec91a75725d15aee69a1;p=emacs.git If CODE1 is nil, use the minimum code of the charset. --- diff --git a/src/charset.c b/src/charset.c index 11dd4b82b72..d7516dc1ba3 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1494,7 +1494,8 @@ is specified. */) dimension = CHARSET_DIMENSION (charsetp); if (NILP (code1)) - code = charsetp->code_space[(dimension - 1) * 4]; + code = (CHARSET_ASCII_COMPATIBLE_P (charsetp) + ? 0 : CHARSET_MIN_CODE (charsetp)); else { CHECK_NATNUM (code1);