aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2002-05-30 00:32:34 +0000
committerKenichi Handa2002-05-30 00:32:34 +0000
commitb1a794612519e631fae626d75ff66f14825b29bc (patch)
tree8880c451c156e3453c2533bb18f27cbfce1ca7b0
parent1929453f8866a64ea5e6b7f6484b3ad73bae91f4 (diff)
downloademacs-b1a794612519e631fae626d75ff66f14825b29bc.tar.gz
emacs-b1a794612519e631fae626d75ff66f14825b29bc.zip
(define-charset): New args :min-code and :max-code.
-rw-r--r--lisp/international/mule.el16
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:
75where MIN-N is the minimum byte value of Nth dimension of code-point, 75where MIN-N is the minimum byte value of Nth dimension of code-point,
76MAX-N is the maximum byte value of that. 76MAX-N is the maximum byte value of that.
77 77
78`:min-code'
79
80VALUE must be an integer specifying the mininum code point of the
81charset. If omitted, it is calculated from `:code-space'. VALUE may
82be a cons (HIGH . LOW), where HIGH is the most significant 16 bits of
83the code point and LOW is the least significant 16 bits.
84
85`max-code'
86
87VALUE must be an integer specifying the maxinum code point of the
88charset. If omitted, it is calculated from `:code-space'. VALUE may
89be a cons (HIGH . LOW), where HIGH is the most significant 16 bits of
90the code point and LOW is the least significant 16 bits.
91
78`:iso-final-char' 92`:iso-final-char'
79 93
80VALUE must be a character in the range 32 to 127 (inclusive) 94VALUE 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'
151attribute." 165attribute."
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