diff options
| author | Dave Love | 2002-05-25 17:04:28 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-25 17:04:28 +0000 |
| commit | 68ab7382da461669bc0a8ba922b4c23651d6a797 (patch) | |
| tree | 19ed984e568a287fba2c553d4f973fa823aae24f | |
| parent | 528623a02588d947586d56457f45bcb743240be5 (diff) | |
| download | emacs-68ab7382da461669bc0a8ba922b4c23651d6a797.tar.gz emacs-68ab7382da461669bc0a8ba922b4c23651d6a797.zip | |
(coding-system-iso-2022-flags): Add
use-roman, use-oldjis.
| -rw-r--r-- | lisp/international/mule.el | 14 |
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 | ||
| 351 | The value of `:flags' attribute in the argument of the function | 353 | The 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 | ||
| 354 | If `long-form' is specified, use a long designation sequence on | 356 | If `long-form' is specified, use a long designation sequence on |
| 355 | encoding for the charsets `japanese-jisx0208-1978', `chinese-gb2312', | 357 | encoding for the charsets `japanese-jisx0208-1978', `chinese-gb2312', |
| @@ -399,7 +401,13 @@ composition sequence is correctly decode on decoding, and is produced | |||
| 399 | on encoding. | 401 | on encoding. |
| 400 | 402 | ||
| 401 | If `euc-tw-shift' is specified, the EUC-TW specific shifting code is | 403 | If `euc-tw-shift' is specified, the EUC-TW specific shifting code is |
| 402 | correctly decoded on decoding, and is produced on encoding.") | 404 | correctly decoded on decoding, and is produced on encoding. |
| 405 | |||
| 406 | If `use-roman' is specified, JIS0201-1976-Roman is designated instead | ||
| 407 | of ASCII. | ||
| 408 | |||
| 409 | If `use-oldjis' is specified, JIS0208-1976 is designated instead of | ||
| 410 | JIS0208-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. |