diff options
| author | Kenichi Handa | 2005-07-07 06:18:59 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2005-07-07 06:18:59 +0000 |
| commit | a9be26751cc1af15035ff9c40aafc698f8c56f30 (patch) | |
| tree | 966ade487cc0420017f9f0a0e8b7942db0e6b634 | |
| parent | a5717394ea6fbd7ea179c362646f4495f88245cb (diff) | |
| download | emacs-a9be26751cc1af15035ff9c40aafc698f8c56f30.tar.gz emacs-a9be26751cc1af15035ff9c40aafc698f8c56f30.zip | |
Declare that all UTF-16-based coding
systems ASCII-incompatible.
| -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).") | |||
| 504 | '(ccl-decode-mule-utf-16le . ccl-encode-mule-utf-16le) | 504 | '(ccl-decode-mule-utf-16le . ccl-encode-mule-utf-16le) |
| 505 | `(,@props | 505 | `(,@props |
| 506 | (post-read-conversion . utf-8-post-read-conversion) | 506 | (post-read-conversion . utf-8-post-read-conversion) |
| 507 | (ascii-incompatible . t) | ||
| 507 | (mime-charset . utf-16le))) | 508 | (mime-charset . utf-16le))) |
| 508 | 509 | ||
| 509 | (make-coding-system | 510 | (make-coding-system |
| @@ -515,6 +516,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") | |||
| 515 | '(ccl-decode-mule-utf-16be . ccl-encode-mule-utf-16be) | 516 | '(ccl-decode-mule-utf-16be . ccl-encode-mule-utf-16be) |
| 516 | `(,@props | 517 | `(,@props |
| 517 | (post-read-conversion . utf-8-post-read-conversion) | 518 | (post-read-conversion . utf-8-post-read-conversion) |
| 519 | (ascii-incompatible . t) | ||
| 518 | (mime-charset . utf-16be))) | 520 | (mime-charset . utf-16be))) |
| 519 | 521 | ||
| 520 | (make-coding-system | 522 | (make-coding-system |
| @@ -528,6 +530,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") | |||
| 528 | `(,@props | 530 | `(,@props |
| 529 | (post-read-conversion . utf-8-post-read-conversion) | 531 | (post-read-conversion . utf-8-post-read-conversion) |
| 530 | (coding-category . coding-category-utf-16-le) | 532 | (coding-category . coding-category-utf-16-le) |
| 533 | (ascii-incompatible . t) | ||
| 531 | (mime-charset . utf-16))) | 534 | (mime-charset . utf-16))) |
| 532 | 535 | ||
| 533 | (make-coding-system | 536 | (make-coding-system |
| @@ -541,6 +544,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") | |||
| 541 | `(,@props | 544 | `(,@props |
| 542 | (post-read-conversion . utf-8-post-read-conversion) | 545 | (post-read-conversion . utf-8-post-read-conversion) |
| 543 | (coding-category . coding-category-utf-16-be) | 546 | (coding-category . coding-category-utf-16-be) |
| 547 | (ascii-incompatible . t) | ||
| 544 | (mime-charset . utf-16))) | 548 | (mime-charset . utf-16))) |
| 545 | 549 | ||
| 546 | (make-coding-system | 550 | (make-coding-system |
| @@ -553,6 +557,7 @@ sequence representing U+FFFD (REPLACEMENT CHARACTER).") | |||
| 553 | `(,@props | 557 | `(,@props |
| 554 | (post-read-conversion . mule-utf-16-post-read-conversion) | 558 | (post-read-conversion . mule-utf-16-post-read-conversion) |
| 555 | (coding-category . coding-category-utf-16-be) | 559 | (coding-category . coding-category-utf-16-be) |
| 560 | (ascii-incompatible . t) | ||
| 556 | (mime-charset . utf-16))) | 561 | (mime-charset . utf-16))) |
| 557 | ) | 562 | ) |
| 558 | 563 | ||