diff options
author | Kenichi Handa <handa@m17n.org> | 1999-02-03 02:20:53 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1999-02-03 02:20:53 +0000 |
commit | 2db66414f1f18c48db269bee9fedc82a0958d6fc (patch) | |
tree | 3ce1fd6801f466a6650106b9d5f436ecb55ed81d /src/fns.c | |
parent | c4c42b2e438cb9c28b36c44c17e710ec1debacbc (diff) | |
download | emacs-2db66414f1f18c48db269bee9fedc82a0958d6fc.tar.gz emacs-2db66414f1f18c48db269bee9fedc82a0958d6fc.tar.bz2 emacs-2db66414f1f18c48db269bee9fedc82a0958d6fc.zip |
(Fset_char_table_default): To handle the case that CH is
an ASCII char, use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |