diff options
| author | Kenichi Handa | 1999-02-03 02:20:53 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-02-03 02:20:53 +0000 |
| commit | 2db66414f1f18c48db269bee9fedc82a0958d6fc (patch) | |
| tree | 3ce1fd6801f466a6650106b9d5f436ecb55ed81d /src | |
| parent | c4c42b2e438cb9c28b36c44c17e710ec1debacbc (diff) | |
| download | emacs-2db66414f1f18c48db269bee9fedc82a0958d6fc.tar.gz 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')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -2032,7 +2032,7 @@ See also the documentation of make-char.") | |||
| 2032 | CHECK_NUMBER (ch, 1); | 2032 | CHECK_NUMBER (ch, 1); |
| 2033 | 2033 | ||
| 2034 | c = XINT (ch); | 2034 | c = XINT (ch); |
| 2035 | SPLIT_NON_ASCII_CHAR (c, charset, code1, code2); | 2035 | SPLIT_CHAR (c, charset, code1, code2); |
| 2036 | 2036 | ||
| 2037 | /* Since we may want to set the default value for a character set | 2037 | /* Since we may want to set the default value for a character set |
| 2038 | not yet defined, we check only if the character set is in the | 2038 | not yet defined, we check only if the character set is in the |