diff options
| author | Kenichi Handa | 2002-05-30 00:32:34 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-05-30 00:32:34 +0000 |
| commit | b1a794612519e631fae626d75ff66f14825b29bc (patch) | |
| tree | 8880c451c156e3453c2533bb18f27cbfce1ca7b0 | |
| parent | 1929453f8866a64ea5e6b7f6484b3ad73bae91f4 (diff) | |
| download | emacs-b1a794612519e631fae626d75ff66f14825b29bc.tar.gz emacs-b1a794612519e631fae626d75ff66f14825b29bc.zip | |
(define-charset): New args :min-code and :max-code.
| -rw-r--r-- | lisp/international/mule.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index fd4f470bd43..1fe12866495 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -75,6 +75,20 @@ range of each dimension in this format: | |||
| 75 | where MIN-N is the minimum byte value of Nth dimension of code-point, | 75 | where MIN-N is the minimum byte value of Nth dimension of code-point, |
| 76 | MAX-N is the maximum byte value of that. | 76 | MAX-N is the maximum byte value of that. |
| 77 | 77 | ||
| 78 | `:min-code' | ||
| 79 | |||
| 80 | VALUE must be an integer specifying the mininum code point of the | ||
| 81 | charset. If omitted, it is calculated from `:code-space'. VALUE may | ||
| 82 | be a cons (HIGH . LOW), where HIGH is the most significant 16 bits of | ||
| 83 | the code point and LOW is the least significant 16 bits. | ||
| 84 | |||
| 85 | `max-code' | ||
| 86 | |||
| 87 | VALUE must be an integer specifying the maxinum code point of the | ||
| 88 | charset. If omitted, it is calculated from `:code-space'. VALUE may | ||
| 89 | be a cons (HIGH . LOW), where HIGH is the most significant 16 bits of | ||
| 90 | the code point and LOW is the least significant 16 bits. | ||
| 91 | |||
| 78 | `:iso-final-char' | 92 | `:iso-final-char' |
| 79 | 93 | ||
| 80 | VALUE must be a character in the range 32 to 127 (inclusive) | 94 | VALUE must be a character in the range 32 to 127 (inclusive) |
| @@ -151,6 +165,8 @@ information. The file format is the same as what described for `:map' | |||
| 151 | attribute." | 165 | attribute." |
| 152 | (let ((attrs (mapcar 'list '(:dimension | 166 | (let ((attrs (mapcar 'list '(:dimension |
| 153 | :code-space | 167 | :code-space |
| 168 | :min-code | ||
| 169 | :max-code | ||
| 154 | :iso-final-char | 170 | :iso-final-char |
| 155 | :iso-revision-number | 171 | :iso-revision-number |
| 156 | :emacs-mule-id | 172 | :emacs-mule-id |