diff options
author | Kenichi Handa <handa@m17n.org> | 2005-07-07 06:18:59 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2005-07-07 06:18:59 +0000 |
commit | a9be26751cc1af15035ff9c40aafc698f8c56f30 (patch) | |
tree | 966ade487cc0420017f9f0a0e8b7942db0e6b634 /lisp/international | |
parent | a5717394ea6fbd7ea179c362646f4495f88245cb (diff) | |
download | emacs-a9be26751cc1af15035ff9c40aafc698f8c56f30.tar.gz |
Declare that all UTF-16-based coding
systems ASCII-incompatible.
Diffstat (limited to 'lisp/international')
-rw-r--r-- | lisp/international/utf-16.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/international/utf-16.el b/lisp/international/utf-16.el index 65730e553b9..bbe2ab37bd8 100644 --- a/lisp/international/utf-16.el +++ b/lisp/international/utf-16.el @@ -504,6 +504,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") '(ccl-decode-mule-utf-16le . ccl-encode-mule-utf-16le) `(,@props (post-read-conversion . utf-8-post-read-conversion) + (ascii-incompatible . t) (mime-charset . utf-16le))) (make-coding-system @@ -515,6 +516,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") '(ccl-decode-mule-utf-16be . ccl-encode-mule-utf-16be) `(,@props (post-read-conversion . utf-8-post-read-conversion) + (ascii-incompatible . t) (mime-charset . utf-16be))) (make-coding-system @@ -528,6 +530,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") `(,@props (post-read-conversion . utf-8-post-read-conversion) (coding-category . coding-category-utf-16-le) + (ascii-incompatible . t) (mime-charset . utf-16))) (make-coding-system @@ -541,6 +544,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") `(,@props (post-read-conversion . utf-8-post-read-conversion) (coding-category . coding-category-utf-16-be) + (ascii-incompatible . t) (mime-charset . utf-16))) (make-coding-system @@ -553,6 +557,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") `(,@props (post-read-conversion . mule-utf-16-post-read-conversion) (coding-category . coding-category-utf-16-be) + (ascii-incompatible . t) (mime-charset . utf-16))) ) |