aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2013-07-20 13:15:37 +0900
committerKenichi Handa2013-07-20 13:15:37 +0900
commiteaaa8f3ea145176bd0168e5ed6e19044a1a9e014 (patch)
treedd449259bc6f4b045d1e7cb44417e9de7f4bd669
parentabd2f2a44e9225cdc89dc6643190dd13785bb48e (diff)
downloademacs-eaaa8f3ea145176bd0168e5ed6e19044a1a9e014.tar.gz
emacs-eaaa8f3ea145176bd0168e5ed6e19044a1a9e014.zip
* mule.el (coding-system-iso-2022-flags): Add `level-4'. (Bug#8522)
-rw-r--r--lisp/international/mule.el11
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
524The value of the `:flags' attribute in the argument of the function 525The 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
578of ASCII. 579of ASCII.
579 580
580If `use-oldjis' is specified, JIS0208-1976 is designated instead of 581If `use-oldjis' is specified, JIS0208-1976 is designated instead of
581JIS0208-1983.") 582JIS0208-1983.
583
584If `level-4' is specified, the decoder assumes the implementation
585lavel \"4\" for 8-bit codes which means that GL is identified as the
586single-shift area. The default implementation level for 8-bit
587code is \"4A\" which means that GR is identified as the
588single-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.