diff options
author | Kenichi Handa <handa@m17n.org> | 2000-03-07 06:16:04 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-03-07 06:16:04 +0000 |
commit | 9bfcd26931380ae21fa130d9608ad429a011984c (patch) | |
tree | 3ec9033f31e69e54e21d61f7fba416d7b8f4f619 /lisp/international/mule-cmds.el | |
parent | 1b46a680d53df163e437b781f4c553f94293f87a (diff) | |
download | emacs-9bfcd26931380ae21fa130d9608ad429a011984c.tar.gz |
(reset-language-environment): Include
coding-category-utf-8, coding-category-utf-16-be, and
coding-category-utf-16-le in the argument for set-coding-priority.
(reset-language-environment): Initialize coding-category-utf-8,
coding-category-utf-16-be, and coding-category-utf-16-le to nil.
Diffstat (limited to 'lisp/international/mule-cmds.el')
-rw-r--r-- | lisp/international/mule-cmds.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 64834ecd81f..ce63f9b5377 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -1193,6 +1193,9 @@ The default status is as follows: coding-category-raw-text 'raw-text coding-category-sjis 'japanese-shift-jis coding-category-big5 'chinese-big5 + coding-category-utf-8 nil + coding-category-utf-16-be nil + coding-category-utf-16-le nil coding-category-ccl nil coding-category-binary 'no-conversion) @@ -1208,7 +1211,10 @@ The default status is as follows: coding-category-sjis coding-category-big5 coding-category-ccl - coding-category-binary)) + coding-category-binary + coding-category-utf-16-be + coding-category-utf-16-le + coding-category-utf-8)) (update-coding-systems-internal) |