aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-05-25 17:04:28 +0000
committerDave Love2002-05-25 17:04:28 +0000
commit68ab7382da461669bc0a8ba922b4c23651d6a797 (patch)
tree19ed984e568a287fba2c553d4f973fa823aae24f
parent528623a02588d947586d56457f45bcb743240be5 (diff)
downloademacs-68ab7382da461669bc0a8ba922b4c23651d6a797.tar.gz
emacs-68ab7382da461669bc0a8ba922b4c23651d6a797.zip
(coding-system-iso-2022-flags): Add
use-roman, use-oldjis.
-rw-r--r--lisp/international/mule.el14
1 files changed, 11 insertions, 3 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 517162b6e09..f769dec27aa 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -345,11 +345,13 @@ Now we have the variable `charset-list'."
345 safe 345 safe
346 latin-extra 346 latin-extra
347 composition 347 composition
348 euc-tw-shift) 348 euc-tw-shift
349 use-roman
350 use-oldjis)
349 "List of symbols that control ISO-2022 encoder/decoder. 351 "List of symbols that control ISO-2022 encoder/decoder.
350 352
351The value of `:flags' attribute in the argument of the function 353The value of `:flags' attribute in the argument of the function
352`define-coding-system' must be one of them. 354`define-coding-system' must be composed from them.
353 355
354If `long-form' is specified, use a long designation sequence on 356If `long-form' is specified, use a long designation sequence on
355encoding for the charsets `japanese-jisx0208-1978', `chinese-gb2312', 357encoding for the charsets `japanese-jisx0208-1978', `chinese-gb2312',
@@ -399,7 +401,13 @@ composition sequence is correctly decode on decoding, and is produced
399on encoding. 401on encoding.
400 402
401If `euc-tw-shift' is specified, the EUC-TW specific shifting code is 403If `euc-tw-shift' is specified, the EUC-TW specific shifting code is
402correctly decoded on decoding, and is produced on encoding.") 404correctly decoded on decoding, and is produced on encoding.
405
406If `use-roman' is specified, JIS0201-1976-Roman is designated instead
407of ASCII.
408
409If `use-oldjis' is specified, JIS0208-1976 is designated instead of
410JIS0208-1983.")
403 411
404(defun define-coding-system (name docstring &rest props) 412(defun define-coding-system (name docstring &rest props)
405 "Define NAME (symbol) as a coding system with DOCSTRING and attributes. 413 "Define NAME (symbol) as a coding system with DOCSTRING and attributes.