diff options
author | Kenichi Handa <handa@m17n.org> | 2000-05-19 23:51:29 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-05-19 23:51:29 +0000 |
commit | 75ec644a43f9f4b9e7316f5c4b42f99314c89ebe (patch) | |
tree | 7b3a8e3059465b8bcf11613d3f779710c2aa0117 /src | |
parent | c5bfa12badc7931b125ababe902697e3d880b6d0 (diff) | |
download | emacs-75ec644a43f9f4b9e7316f5c4b42f99314c89ebe.tar.gz emacs-75ec644a43f9f4b9e7316f5c4b42f99314c89ebe.tar.bz2 emacs-75ec644a43f9f4b9e7316f5c4b42f99314c89ebe.zip |
(Fmodify_category_entry): Use SPLIT_CHAR, not
SPLIT_NON_ASCII_CHAR.
Diffstat (limited to 'src')
-rw-r--r-- | src/category.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/category.c b/src/category.c index 996b2e9ee35..c74b483e7d9 100644 --- a/src/category.c +++ b/src/category.c @@ -394,7 +394,7 @@ If optional fourth argument RESET is non-nil,\n\ return Qnil; } - SPLIT_NON_ASCII_CHAR (c, charset, c1, c2); + SPLIT_CHAR (c, charset, c1, c2); /* The top level table. */ val = XCHAR_TABLE (table)->contents[charset + 128]; |