From 2db66414f1f18c48db269bee9fedc82a0958d6fc Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 3 Feb 1999 02:20:53 +0000 Subject: [PATCH] (Fset_char_table_default): To handle the case that CH is an ASCII char, use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR. --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fns.c b/src/fns.c index ffe2b156712..d5f26464709 100644 --- a/src/fns.c +++ b/src/fns.c @@ -2032,7 +2032,7 @@ See also the documentation of make-char.") CHECK_NUMBER (ch, 1); c = XINT (ch); - SPLIT_NON_ASCII_CHAR (c, charset, code1, code2); + SPLIT_CHAR (c, charset, code1, code2); /* Since we may want to set the default value for a character set not yet defined, we check only if the character set is in the -- 2.39.2