diff options
| author | Kenichi Handa | 2013-07-20 13:15:37 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2013-07-20 13:15:37 +0900 |
| commit | eaaa8f3ea145176bd0168e5ed6e19044a1a9e014 (patch) | |
| tree | dd449259bc6f4b045d1e7cb44417e9de7f4bd669 | |
| parent | abd2f2a44e9225cdc89dc6643190dd13785bb48e (diff) | |
| download | emacs-eaaa8f3ea145176bd0168e5ed6e19044a1a9e014.tar.gz emacs-eaaa8f3ea145176bd0168e5ed6e19044a1a9e014.zip | |
* mule.el (coding-system-iso-2022-flags): Add `level-4'. (Bug#8522)
| -rw-r--r-- | lisp/international/mule.el | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 28542835a5f..45f74217ad2 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -518,7 +518,8 @@ Return -1 if charset isn't an ISO 2022 one." | |||
| 518 | composition | 518 | composition |
| 519 | euc-tw-shift | 519 | euc-tw-shift |
| 520 | use-roman | 520 | use-roman |
| 521 | use-oldjis) | 521 | use-oldjis |
| 522 | level-4) | ||
| 522 | "List of symbols that control ISO-2022 encoder/decoder. | 523 | "List of symbols that control ISO-2022 encoder/decoder. |
| 523 | 524 | ||
| 524 | The value of the `:flags' attribute in the argument of the function | 525 | The value of the `:flags' attribute in the argument of the function |
| @@ -578,7 +579,13 @@ If `use-roman' is specified, JIS0201-1976-Roman is designated instead | |||
| 578 | of ASCII. | 579 | of ASCII. |
| 579 | 580 | ||
| 580 | If `use-oldjis' is specified, JIS0208-1976 is designated instead of | 581 | If `use-oldjis' is specified, JIS0208-1976 is designated instead of |
| 581 | JIS0208-1983.") | 582 | JIS0208-1983. |
| 583 | |||
| 584 | If `level-4' is specified, the decoder assumes the implementation | ||
| 585 | lavel \"4\" for 8-bit codes which means that GL is identified as the | ||
| 586 | single-shift area. The default implementation level for 8-bit | ||
| 587 | code is \"4A\" which means that GR is identified as the | ||
| 588 | single-shift area.") | ||
| 582 | 589 | ||
| 583 | (defun define-coding-system (name docstring &rest props) | 590 | (defun define-coding-system (name docstring &rest props) |
| 584 | "Define NAME (a symbol) as a coding system with DOCSTRING and attributes. | 591 | "Define NAME (a symbol) as a coding system with DOCSTRING and attributes. |