# HG changeset patch # User Kenichi Handa # Date 1120717139 0 # Node ID 4161411b91d0b991ac8cfcf933b655c6bb48bca7 # Parent c9251f75fc62e200ff577dee2b5fdbde33d0fa19 Declare that all UTF-16-based coding systems ASCII-incompatible. diff -r c9251f75fc62 -r 4161411b91d0 lisp/international/utf-16.el --- a/lisp/international/utf-16.el Thu Jul 07 04:59:32 2005 +0000 +++ b/lisp/international/utf-16.el Thu Jul 07 06:18:59 2005 +0000 @@ -504,6 +504,7 @@ '(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 @@ '(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 @@ `(,@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 @@ `(,@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 @@ `(,@props (post-read-conversion . mule-utf-16-post-read-conversion) (coding-category . coding-category-utf-16-be) + (ascii-incompatible . t) (mime-charset . utf-16))) )