Mercurial > emacs
diff src/fns.c @ 24255:c373e786127a
(Fset_char_table_default): To handle the case that CH is
an ASCII char, use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Wed, 03 Feb 1999 02:20:53 +0000 |
| parents | 43344f47a865 |
| children | e30a84ad7aa0 |
line wrap: on
line diff
--- a/src/fns.c Tue Feb 02 19:35:29 1999 +0000 +++ b/src/fns.c Wed Feb 03 02:20:53 1999 +0000 @@ -2032,7 +2032,7 @@ 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
