* xselect.c (x_check_property_data): Return correct size (Bug#8335).
[emacs.git] / admin / unidata / unidata-gen.el
blob9f8986685267faeef7f6d056c4d0d2edb61f0765
1 ;; unidata-gen.el -- Create files containing character property data.
2 ;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 ;; National Institute of Advanced Industrial Science and Technology (AIST)
4 ;; Registration Number H13PRO009
6 ;; This file is part of GNU Emacs.
8 ;; GNU Emacs is free software: you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21 ;;; Commentary:
23 ;; SPECIAL NOTICE
25 ;; This file must be byte-compilable/loadable by `temacs' and also
26 ;; the entry function `unidata-gen-files' must be runnable by
27 ;; `temacs'.
29 ;; FILES TO BE GENERATED
31 ;; The entry function `unidata-gen-files' generates these files in
32 ;; the current directory.
34 ;; charprop.el
35 ;; It contains a series of forms of this format:
36 ;; (char-code-property-register PROP FILE)
37 ;; where PROP is a symbol representing a character property
38 ;; (name, generic-category, etc), and FILE is a name of one of
39 ;; the following files.
41 ;; uni-name.el, uni-category.el, uni-combining.el, uni-bidi.el,
42 ;; uni-decomposition.el, uni-decimal.el, uni-digit.el, uni-numeric.el,
43 ;; uni-mirrored.el, uni-old-name.el, uni-comment.el, uni-uppercase.el,
44 ;; uni-lowercase.el, uni-titlecase.el
45 ;; They each contain a single form of this format:
46 ;; (char-code-property-register PROP CHAR-TABLE)
47 ;; where PROP is the same as above, and CHAR-TABLE is a
48 ;; char-table containing property values in a compressed format.
50 ;; When they are installed in .../lisp/international/, the file
51 ;; "charprop.el" is preloaded in loadup.el. The other files are
52 ;; automatically loaded when the functions `get-char-code-property'
53 ;; and `put-char-code-property' are called.
55 ;; FORMAT OF A CHAR TABLE
57 ;; We want to make a file size containing a char-table small. We
58 ;; also want to load the file and get a property value fast. We
59 ;; also want to reduce the used memory after loading it. So,
60 ;; instead of naively storing a property value for each character in
61 ;; a char-table (and write it out into a file), we store compressed
62 ;; data in a char-table as below.
64 ;; If succeeding 128*N characters have the same property value, we
65 ;; store that value for them. Otherwise, compress values for
66 ;; succeeding 128 characters into a single string and store it as a
67 ;; value for those characters. The way of compression depends on a
68 ;; property. See the section "SIMPLE TABLE", "RUN-LENGTH TABLE",
69 ;; and "WORD-LIST TABLE".
71 ;; The char table has four extra slots:
72 ;; 1st: property symbol
73 ;; 2nd: function to call to get a property value
74 ;; 3nd: function to call to put a property value
75 ;; 4th: function to call to get a description of a property value
76 ;; 5th: data referred by the above functions
78 ;; List of elements of this form:
79 ;; (CHAR-or-RANGE PROP1 PROP2 ... PROPn)
80 ;; CHAR-or-RANGE: a character code or a cons of character codes
81 ;; PROPn: string representing the nth property value
83 (defvar unidata-list nil)
85 (defun unidata-setup-list (unidata-text-file)
86 (let* ((table (list nil))
87 (tail table)
88 (block-names '(("^<CJK Ideograph" . CJK\ IDEOGRAPH)
89 ("^<Hangul Syllable" . HANGUL\ SYLLABLE)
90 ("^<.*Surrogate" . nil)
91 ("^<.*Private Use" . PRIVATE\ USE)))
92 val char name)
93 (or (file-readable-p unidata-text-file)
94 (error "File not readable: %s" unidata-text-file))
95 (with-temp-buffer
96 ;; Insert a file of this format:
97 ;; (CHAR NAME CATEGORY ...)
98 ;; where CHAR is a character code, the following elements are strings
99 ;; representing character properties.
100 (insert-file-contents unidata-text-file)
101 (goto-char (point-min))
102 (condition-case nil
103 (while t
104 (setq val (read (current-buffer))
105 char (car val)
106 name (cadr val))
108 ;; Check this kind of block.
109 ;; 4E00;<CJK Ideograph, First>;Lo;0;L;;;;;N;;;;;
110 ;; 9FCB;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;;
111 (if (and (= (aref name 0) ?<)
112 (string-match ", First>$" name))
113 (let ((first char)
114 (l block-names)
115 block-name)
116 (setq val (read (current-buffer))
117 char (car val)
118 block-name (cadr val)
119 name nil)
120 (while l
121 (if (string-match (caar l) block-name)
122 (setq name (cdar l) l nil)
123 (setq l (cdr l))))
124 (if (not name)
125 ;; As this is a surrogate pair range, ignore it.
126 (setq val nil)
127 (setcar val (cons first char))
128 (setcar (cdr val) name))))
130 (when val
131 (setcdr tail (list val))
132 (setq tail (cdr tail))))
133 (error nil)))
134 (setq unidata-list (cdr table))))
136 ;; Alist of this form:
137 ;; (PROP INDEX GENERATOR FILENAME)
138 ;; PROP: character property
139 ;; INDEX: index to each element of unidata-list for PROP
140 ;; GENERATOR: function to generate a char-table
141 ;; FILENAME: filename to store the char-table
142 ;; DESCRIBER: function to call to get a description string of property value
144 (defconst unidata-prop-alist
145 '((name
146 1 unidata-gen-table-name "uni-name.el"
147 "Unicode character name.
148 Property value is a string.")
149 (general-category
150 2 unidata-gen-table-symbol "uni-category.el"
151 "Unicode general category.
152 Property value is one of the following symbols:
153 Lu, Ll, Lt, Lm, Lo, Mn, Mc, Me, Nd, Nl, No, Pc, Pd, Ps, Pe, Pi, Pf, Po,
154 Sm, Sc, Sk, So, Zs, Zl, Zp, Cc, Cf, Cs, Co, Cn"
155 unidata-describe-general-category)
156 (canonical-combining-class
157 3 unidata-gen-table-integer "uni-combining.el"
158 "Unicode canonical combining class.
159 Property value is an integer."
160 unidata-describe-canonical-combining-class)
161 (bidi-class
162 4 unidata-gen-table-symbol "uni-bidi.el"
163 "Unicode bidi class.
164 Property value is one of the following symbols:
165 L, LRE, LRO, R, AL, RLE, RLO, PDF, EN, ES, ET,
166 AN, CS, NSM, BN, B, S, WS, ON"
167 unidata-describe-bidi-class)
168 (decomposition
169 5 unidata-gen-table-decomposition "uni-decomposition.el"
170 "Unicode decomposition mapping.
171 Property value is a list of characters. The first element may be
172 one of these symbols representing compatibility formatting tag:
173 font, noBreak, initial, medial, final, isolated, circle, super,
174 sub, vertical, wide, narrow, small, square, fraction, compat"
175 unidata-describe-decomposition)
176 (decimal-digit-value
177 6 unidata-gen-table-integer "uni-decimal.el"
178 "Unicode numeric value (decimal digit).
179 Property value is an integer.")
180 (digit-value
181 7 unidata-gen-table-integer "uni-digit.el"
182 "Unicode numeric value (digit).
183 Property value is an integer.")
184 (numeric-value
185 8 unidata-gen-table-numeric "uni-numeric.el"
186 "Unicode numeric value (numeric).
187 Property value is an integer or a floating point.")
188 (mirrored
189 9 unidata-gen-table-symbol "uni-mirrored.el"
190 "Unicode bidi mirrored flag.
191 Property value is a symbol `Y' or `N'.")
192 (old-name
193 10 unidata-gen-table-name "uni-old-name.el"
194 "Unicode old names as published in Unicode 1.0.
195 Property value is a string.")
196 (iso-10646-comment
197 11 unidata-gen-table-name "uni-comment.el"
198 "Unicode ISO 10646 comment.
199 Property value is a string.")
200 (uppercase
201 12 unidata-gen-table-character "uni-uppercase.el"
202 "Unicode simple uppercase mapping.
203 Property value is a character."
204 string)
205 (lowercase
206 13 unidata-gen-table-character "uni-lowercase.el"
207 "Unicode simple lowercase mapping.
208 Property value is a character."
209 string)
210 (titlecase
211 14 unidata-gen-table-character "uni-titlecase.el"
212 "Unicode simple titlecase mapping.
213 Property value is a character."
214 string)))
216 ;; Functions to access the above data.
217 (defsubst unidata-prop-index (prop) (nth 1 (assq prop unidata-prop-alist)))
218 (defsubst unidata-prop-generator (prop) (nth 2 (assq prop unidata-prop-alist)))
219 (defsubst unidata-prop-file (prop) (nth 3 (assq prop unidata-prop-alist)))
220 (defsubst unidata-prop-docstring (prop) (nth 4 (assq prop unidata-prop-alist)))
221 (defsubst unidata-prop-describer (prop) (nth 5 (assq prop unidata-prop-alist)))
224 ;; SIMPLE TABLE
226 ;; If the type of character property value is character, and the
227 ;; values of succeeding character codes are usually different, we use
228 ;; a char-table described here to store such values.
230 ;; If succeeding 128 characters has no property, a char-table has the
231 ;; symbol t for them. Otherwise a char-table has a string of the
232 ;; following format for them.
234 ;; The first character of the string is FIRST-INDEX.
235 ;; The Nth (N > 0) character of the string is a property value of the
236 ;; character (BLOCK-HEAD + FIRST-INDEX + N - 1), where BLOCK-HEAD is
237 ;; the first of the characters in the block.
239 ;; The 4th extra slot of a char-table is nil.
241 (defun unidata-get-character (char val table)
242 (cond
243 ((characterp val)
244 val)
246 ((stringp val)
247 (let* ((len (length val))
248 (block-head (lsh (lsh char -7) 7))
249 (vec (make-vector 128 nil))
250 (first-index (aref val 0)))
251 (dotimes (i (1- len))
252 (let ((elt (aref val (1+ i))))
253 (if (> elt 0)
254 (aset vec (+ first-index i) elt))))
255 (dotimes (i 128)
256 (aset table (+ block-head i) (aref vec i)))
257 (aref vec (- char block-head))))))
259 (defun unidata-put-character (char val table)
260 (or (characterp val)
261 (not val)
262 (error "Not a character nor nil: %S" val))
263 (let ((current-val (aref table char)))
264 (unless (eq current-val val)
265 (if (stringp current-val)
266 (funcall (char-table-extra-slot table 1) char current-val table))
267 (aset table char val))))
269 (defun unidata-gen-table-character (prop)
270 (let ((table (make-char-table 'char-code-property-table))
271 (prop-idx (unidata-prop-index prop))
272 (vec (make-vector 128 0))
273 (tail unidata-list)
274 elt range val idx slot)
275 (set-char-table-range table (cons 0 (max-char)) t)
276 (while tail
277 (setq elt (car tail) tail (cdr tail))
278 (setq range (car elt)
279 val (nth prop-idx elt))
280 (if (= (length val) 0)
281 (setq val nil)
282 (setq val (string-to-number val 16)))
283 (if (consp range)
284 (if val
285 (set-char-table-range table range val))
286 (let* ((start (lsh (lsh range -7) 7))
287 (limit (+ start 127))
288 first-index last-index)
289 (fillarray vec 0)
290 (if val
291 (aset vec (setq last-index (setq first-index (- range start)))
292 val))
293 (while (and (setq elt (car tail) range (car elt))
294 (integerp range)
295 (<= range limit))
296 (setq val (nth prop-idx elt))
297 (when (> (length val) 0)
298 (aset vec (setq last-index (- range start))
299 (string-to-number val 16))
300 (or first-index
301 (setq first-index last-index)))
302 (setq tail (cdr tail)))
303 (when first-index
304 (let ((str (string first-index))
306 (while (<= first-index last-index)
307 (setq str (format "%s%c" str (or (aref vec first-index) 0))
308 first-index (1+ first-index)))
309 (set-char-table-range table (cons start limit) str))))))
311 (set-char-table-extra-slot table 0 prop)
312 (byte-compile 'unidata-get-character)
313 (byte-compile 'unidata-put-character)
314 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-character))
315 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-character))
317 table))
321 ;; RUN-LENGTH TABLE
323 ;; If the type of character property value is symbol, integer,
324 ;; boolean, or character, we use a char-table described here to store
325 ;; the values.
327 ;; The 4th extra slot is a vector of property values (VAL-TABLE), and
328 ;; values for succeeding 128 characters are encoded into this
329 ;; character sequence:
330 ;; ( VAL-CODE RUN-LENGTH ? ) +
331 ;; where:
332 ;; VAL-CODE (0..127):
333 ;; (VAL-CODE - 1) is an index into VAL-TABLE.
334 ;; The value 0 means no-value.
335 ;; RUN-LENGTH (130..255):
336 ;; (RUN-LENGTH - 128) specifies how many characters have the same
337 ;; value. If omitted, it means 1.
340 ;; Return a symbol-type character property value of CHAR. VAL is the
341 ;; current value of (aref TABLE CHAR).
343 (defun unidata-get-symbol (char val table)
344 (let ((val-table (char-table-extra-slot table 4)))
345 (cond ((symbolp val)
346 val)
347 ((stringp val)
348 (let ((first-char (lsh (lsh char -7) 7))
349 (str val)
350 (len (length val))
351 (idx 0)
352 this-val count)
353 (set-char-table-range table (cons first-char (+ first-char 127))
354 nil)
355 (while (< idx len)
356 (setq val (aref str idx) idx (1+ idx)
357 count (if (< idx len) (aref str idx) 1))
358 (setq val (and (> val 0) (aref val-table (1- val)))
359 count (if (< count 128)
361 (prog1 (- count 128) (setq idx (1+ idx)))))
362 (dotimes (i count)
363 (if val
364 (aset table first-char val))
365 (if (= first-char char)
366 (setq this-val val))
367 (setq first-char (1+ first-char))))
368 this-val))
369 ((> val 0)
370 (aref val-table (1- val))))))
372 ;; Return a integer-type character property value of CHAR. VAL is the
373 ;; current value of (aref TABLE CHAR).
375 (defun unidata-get-integer (char val table)
376 (let ((val-table (char-table-extra-slot table 4)))
377 (cond ((integerp val)
378 val)
379 ((stringp val)
380 (let ((first-char (lsh (lsh char -7) 7))
381 (str val)
382 (len (length val))
383 (idx 0)
384 this-val count)
385 (while (< idx len)
386 (setq val (aref str idx) idx (1+ idx)
387 count (if (< idx len) (aref str idx) 1))
388 (setq val (and (> val 0) (aref val-table (1- val)))
389 count (if (< count 128)
391 (prog1 (- count 128) (setq idx (1+ idx)))))
392 (dotimes (i count)
393 (aset table first-char val)
394 (if (= first-char char)
395 (setq this-val val))
396 (setq first-char (1+ first-char))))
397 this-val)))))
399 ;; Return a numeric-type (integer or float) character property value
400 ;; of CHAR. VAL is the current value of (aref TABLE CHAR).
402 (defun unidata-get-numeric (char val table)
403 (cond
404 ((numberp val)
405 val)
406 ((stringp val)
407 (let ((val-table (char-table-extra-slot table 4))
408 (first-char (lsh (lsh char -7) 7))
409 (str val)
410 (len (length val))
411 (idx 0)
412 this-val count)
413 (while (< idx len)
414 (setq val (aref str idx) idx (1+ idx)
415 count (if (< idx len) (aref str idx) 1))
416 (setq val (and (> val 0) (aref val-table (1- val)))
417 count (if (< count 128)
419 (prog1 (- count 128) (setq idx (1+ idx)))))
420 (dotimes (i count)
421 (aset table first-char val)
422 (if (= first-char char)
423 (setq this-val val))
424 (setq first-char (1+ first-char))))
425 this-val))))
427 ;; Store VAL (symbol) as a character property value of CHAR in TABLE.
429 (defun unidata-put-symbol (char val table)
430 (or (symbolp val)
431 (error "Not a symbol: %S" val))
432 (let ((current-val (aref table char)))
433 (unless (eq current-val val)
434 (if (stringp current-val)
435 (funcall (char-table-extra-slot table 1) char current-val table))
436 (aset table char val))))
438 ;; Store VAL (integer) as a character property value of CHAR in TABLE.
440 (defun unidata-put-integer (char val table)
441 (or (integerp val)
442 (not val)
443 (error "Not an integer nor nil: %S" val))
444 (let ((current-val (aref table char)))
445 (unless (eq current-val val)
446 (if (stringp current-val)
447 (funcall (char-table-extra-slot table 1) char current-val table))
448 (aset table char val))))
450 ;; Store VAL (integer or float) as a character property value of CHAR
451 ;; in TABLE.
453 (defun unidata-put-numeric (char val table)
454 (or (numberp val)
455 (not val)
456 (error "Not a number nor nil: %S" val))
457 (let ((current-val (aref table char)))
458 (unless (equal current-val val)
459 (if (stringp current-val)
460 (funcall (char-table-extra-slot table 1) char current-val table))
461 (aset table char val))))
463 ;; Encode the character property value VAL into an integer value by
464 ;; VAL-LIST. By side effect, VAL-LIST is modified.
465 ;; VAL-LIST has this form:
466 ;; (t (VAL1 . VAL-CODE1) (VAL2 . VAL-CODE2) ...)
467 ;; If VAL is one of VALn, just return VAL-CODEn. Otherwise,
468 ;; VAL-LIST is modified to this:
469 ;; (t (VAL . (1+ VAL-CODE1)) (VAL1 . VAL-CODE1) (VAL2 . VAL-CODE2) ...)
471 (defun unidata-encode-val (val-list val)
472 (let ((slot (assoc val val-list))
473 val-code)
474 (if slot
475 (cdr slot)
476 (setq val-code (if (cdr val-list) (1+ (cdr (nth 1 val-list))) 1))
477 (setcdr val-list (cons (cons val val-code) (cdr val-list)))
478 val-code)))
480 ;; Generate a char-table for the character property PROP.
482 (defun unidata-gen-table (prop val-func default-value)
483 (let ((table (make-char-table 'char-code-property-table))
484 (prop-idx (unidata-prop-index prop))
485 (val-list (list t))
486 (vec (make-vector 128 0))
487 tail elt range val val-code idx slot
488 prev-range-data)
489 (set-char-table-range table (cons 0 (max-char)) default-value)
490 (setq tail unidata-list)
491 (while tail
492 (setq elt (car tail) tail (cdr tail))
493 (setq range (car elt)
494 val (funcall val-func (nth prop-idx elt)))
495 (setq val-code (if val (unidata-encode-val val-list val)))
496 (if (consp range)
497 (when val-code
498 (set-char-table-range table range val)
499 (let ((from (car range)) (to (cdr range)))
500 ;; If RANGE doesn't end at the char-table boundary (each
501 ;; 128 characters), we may have to carry over the data
502 ;; for the last several characters (at most 127 chars)
503 ;; to the next loop. In that case, set PREV-RANGE-DATA
504 ;; to ((FROM . TO) . VAL-CODE) where (FROM . TO)
505 ;; specifies the range of characters handled in the next
506 ;; loop.
507 (when (< (logand to #x7F) #x7F)
508 (if (< from (logand to #x1FFF80))
509 (setq from (logand to #x1FFF80)))
510 (setq prev-range-data (cons (cons from to) val-code)))))
511 (let* ((start (lsh (lsh range -7) 7))
512 (limit (+ start 127))
513 str count new-val)
514 (fillarray vec 0)
515 ;; See the comment above.
516 (when (and prev-range-data
517 (>= (cdr (car prev-range-data)) start))
518 (let ((from (car (car prev-range-data)))
519 (to (cdr (car prev-range-data)))
520 (vcode (cdr prev-range-data)))
521 (while (<= from to)
522 (aset vec (- from start) vcode)
523 (setq from (1+ from)))))
524 (setq prev-range-data nil)
525 (if val-code
526 (aset vec (- range start) val-code))
527 (while (and (setq elt (car tail) range (car elt))
528 (integerp range)
529 (<= range limit))
530 (setq new-val (funcall val-func (nth prop-idx elt)))
531 (if (not (eq val new-val))
532 (setq val new-val
533 val-code (if val (unidata-encode-val val-list val))))
534 (if val-code
535 (aset vec (- range start) val-code))
536 (setq tail (cdr tail)))
537 (setq str "" val-code -1 count 0)
538 (mapc #'(lambda (x)
539 (if (= val-code x)
540 (setq count (1+ count))
541 (if (> count 2)
542 (setq str (concat str (string val-code
543 (+ count 128))))
544 (if (= count 2)
545 (setq str (concat str (string val-code val-code)))
546 (if (= count 1)
547 (setq str (concat str (string val-code))))))
548 (setq val-code x count 1)))
549 vec)
550 (if (= count 128)
551 (if val
552 (set-char-table-range table (cons start limit) val))
553 (if (= val-code 0)
554 (set-char-table-range table (cons start limit) str)
555 (if (> count 2)
556 (setq str (concat str (string val-code (+ count 128))))
557 (if (= count 2)
558 (setq str (concat str (string val-code val-code)))
559 (setq str (concat str (string val-code)))))
560 (set-char-table-range table (cons start limit) str))))))
562 (setq val-list (nreverse (cdr val-list)))
563 (set-char-table-extra-slot table 0 prop)
564 (set-char-table-extra-slot table 4 (vconcat (mapcar 'car val-list)))
565 table))
567 (defun unidata-gen-table-symbol (prop)
568 (let ((table (unidata-gen-table prop
569 #'(lambda (x) (and (> (length x) 0)
570 (intern x)))
571 0)))
572 (byte-compile 'unidata-get-symbol)
573 (byte-compile 'unidata-put-symbol)
574 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-symbol))
575 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-symbol))
576 table))
578 (defun unidata-gen-table-integer (prop)
579 (let ((table (unidata-gen-table prop
580 #'(lambda (x) (and (> (length x) 0)
581 (string-to-number x)))
582 t)))
583 (byte-compile 'unidata-get-integer)
584 (byte-compile 'unidata-put-integer)
585 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-integer))
586 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-integer))
587 table))
589 (defun unidata-gen-table-numeric (prop)
590 (let ((table (unidata-gen-table prop
591 #'(lambda (x)
592 (if (string-match "/" x)
593 (/ (float (string-to-number x))
594 (string-to-number
595 (substring x (match-end 0))))
596 (if (> (length x) 0)
597 (string-to-number x))))
598 t)))
599 (byte-compile 'unidata-get-numeric)
600 (byte-compile 'unidata-put-numeric)
601 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-numeric))
602 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-numeric))
603 table))
606 ;; WORD-LIST TABLE
608 ;; If the table is for `name' property, each character in the string
609 ;; is one of these:
610 ;; DIFF-HEAD-CODE (0, 1, or 2):
611 ;; specifies how to decode the following characters.
612 ;; WORD-CODE (3..#x7FF excluding '-', '0'..'9', 'A'..'Z'):
613 ;; specifies an index number into WORD-TABLE (see below)
614 ;; Otherwise (' ', '-', '0'..'9', 'A'..'Z'):
615 ;; specifies a literal word.
617 ;; The 4th slots is a vector:
618 ;; [ WORD-TABLE BLOCK-NAME HANGUL-JAMO-TABLE ]
619 ;; WORD-TABLE is a vector of word symbols.
620 ;; BLOCK-NAME is a vector of name symbols for a block of characters.
621 ;; HANGUL-JAMO-TABLE is `unidata-name-jamo-name-table'.
623 ;; Return the difference of symbol list L1 and L2 in this form:
624 ;; (DIFF-HEAD SYM1 SYM2 ...)
625 ;; DIFF-HEAD is ((SAME-HEAD-LENGTH * 16) + SAME-TAIL-LENGTH).
626 ;; Ex: If L1 is (a b c d e f) and L2 is (a g h e f), this function
627 ;; returns ((+ (* 1 16) 2) g h).
628 ;; It means that we can get L2 from L1 by prepending the first element
629 ;; of L1 and appending the last 2 elements of L1 to the list (g h).
630 ;; If L1 and L2 don't have common elements at the head and tail,
631 ;; set DIFF-HEAD to -1 and SYM1 ... to the elements of L2.
633 (defun unidata-word-list-diff (l1 l2)
634 (let ((beg 0)
635 (end 0)
636 (len1 (length l1))
637 (len2 (length l2))
638 result)
639 (when (< len1 16)
640 (while (and l1 (eq (car l1) (car l2)))
641 (setq beg (1+ beg)
642 l1 (cdr l1) len1 (1- len1) l2 (cdr l2) len2 (1- len2)))
643 (while (and (< end len1) (< end len2)
644 (eq (nth (- len1 end 1) l1) (nth (- len2 end 1) l2)))
645 (setq end (1+ end))))
646 (if (= (+ beg end) 0)
647 (setq result (list -1))
648 (setq result (list (+ (* beg 16) (+ beg (- len1 end))))))
649 (while (< end len2)
650 (setcdr result (cons (nth (- len2 end 1) l2) (cdr result)))
651 (setq end (1+ end)))
652 result))
654 ;; Return a compressed form of the vector VEC. Each element of VEC is
655 ;; a list of symbols of which names can be concatenated to form a
656 ;; character name. This function changes those elements into
657 ;; compressed forms by utilizing the fact that diff of consecutive
658 ;; elements is usually small.
660 (defun unidata-word-list-compress (vec)
661 (let (last-elt last-idx diff-head tail elt val)
662 (dotimes (i 128)
663 (setq elt (aref vec i))
664 (when elt
665 (if (null last-elt)
666 (setq diff-head -1
667 val (cons 0 elt))
668 (setq val (unidata-word-list-diff last-elt elt))
669 (if (= (car val) -1)
670 (setq diff-head -1
671 val (cons 0 (cdr val)))
672 (if (eq diff-head (car val))
673 (setq val (cons 2 (cdr val)))
674 (setq diff-head (car val))
675 (if (>= diff-head 0)
676 (setq val (cons 1 val))))))
677 (aset vec i val)
678 (setq last-idx i last-elt elt)))
679 (if (not last-idx)
680 (setq vec nil)
681 (if (< last-idx 127)
682 (let ((shorter (make-vector (1+ last-idx) nil)))
683 (dotimes (i (1+ last-idx))
684 (aset shorter i (aref vec i)))
685 (setq vec shorter))))
686 vec))
688 ;; Encode the word index IDX into a characters code that can be
689 ;; embedded in a string.
691 (defsubst unidata-encode-word (idx)
692 ;; Exclude 0, 1, 2.
693 (+ idx 3))
695 ;; Decode the character code CODE (that is embedded in a string) into
696 ;; the corresponding word name by looking up WORD-TABLE.
698 (defsubst unidata-decode-word (code word-table)
699 (setq code (- code 3))
700 (if (< code (length word-table))
701 (aref word-table code)))
703 ;; Table of short transliterated name symbols of Hangul Jamo divided
704 ;; into Choseong, Jungseong, and Jongseong.
706 (defconst unidata-name-jamo-name-table
707 [[G GG N D DD R M B BB S SS nil J JJ C K T P H]
708 [A AE YA YAE EO E YEO YE O WA WAE OE YO U WEO WE WI YU EU YI I]
709 [G GG GS N NJ NH D L LG LM LB LS LT LP LH M B BS S SS NG J C K T P H]])
711 ;; Return a name of CHAR. VAL is the current value of (aref TABLE
712 ;; CHAR).
714 (defun unidata-get-name (char val table)
715 (cond
716 ((stringp val)
717 (if (> (aref val 0) 0)
719 (let* ((first-char (lsh (lsh char -7) 7))
720 (word-table (aref (char-table-extra-slot table 4) 0))
721 (i 1)
722 (len (length val))
723 (vec (make-vector 128 nil))
724 (idx 0)
725 (case-fold-search nil)
726 c word-list tail-list last-list word diff-head)
727 (while (< i len)
728 (setq c (aref val i))
729 (if (< c 3)
730 (progn
731 (if (or word-list tail-list)
732 (aset vec idx
733 (setq last-list (nconc word-list tail-list))))
734 (setq i (1+ i) idx (1+ idx)
735 word-list nil tail-list nil)
736 (if (> c 0)
737 (let ((l last-list))
738 (if (= c 1)
739 (setq diff-head
740 (prog1 (aref val i) (setq i (1+ i)))))
741 (setq tail-list (nthcdr (% diff-head 16) last-list))
742 (dotimes (i (/ diff-head 16))
743 (setq word-list (nconc word-list (list (car l)))
744 l (cdr l))))))
745 (setq word-list
746 (nconc word-list
747 (list (symbol-name
748 (unidata-decode-word c word-table))))
749 i (1+ i))))
750 (if (or word-list tail-list)
751 (aset vec idx (nconc word-list tail-list)))
752 (setq val nil)
753 (dotimes (i 128)
754 (setq c (+ first-char i))
755 (let ((name (aref vec i)))
756 (if name
757 (let ((tail (cdr (setq name (copy-sequence name))))
758 elt)
759 (while tail
760 (setq elt (car tail))
761 (or (string= elt "-")
762 (progn
763 (setcdr tail (cons elt (cdr tail)))
764 (setcar tail " ")))
765 (setq tail (cddr tail)))
766 (setq name (apply 'concat name))))
767 (aset table c name)
768 (if (= c char)
769 (setq val name))))
770 val)))
772 ((and (integerp val) (> val 0))
773 (let* ((symbol-table (aref (char-table-extra-slot table 4) 1))
774 (sym (aref symbol-table (1- val))))
775 (cond ((eq sym 'HANGUL\ SYLLABLE)
776 (let ((jamo-name-table (aref (char-table-extra-slot table 4) 2)))
777 ;; SIndex = S - SBase
778 (setq char (- char #xAC00))
779 (let ( ;; LIndex = SIndex / NCount
780 (L (/ char 588))
781 ;; VIndex = (SIndex % NCount) * TCount
782 (V (/ (% char 588) 28))
783 ;; TIndex = SIndex % TCount
784 (T (% char 28)))
785 (format "HANGUL SYLLABLE %s%s%s"
786 ;; U+110B is nil in this table.
787 (or (aref (aref jamo-name-table 0) L) "")
788 (aref (aref jamo-name-table 1) V)
789 (if (= T 0) ""
790 (aref (aref jamo-name-table 2) (1- T)))))))
791 ((eq sym 'CJK\ IDEOGRAPH)
792 (format "%s-%04X" sym char))
793 ((eq sym 'CJK\ COMPATIBILITY\ IDEOGRAPH)
794 (format "%s-%04X" sym char))
795 ((eq sym 'VARIATION\ SELECTOR)
796 (format "%s-%d" sym (+ (- char #xe0100) 17))))))))
798 ;; Store VAL as the name of CHAR in TABLE.
800 (defun unidata-put-name (char val table)
801 (let ((current-val (aref table char)))
802 (if (and (stringp current-val) (= (aref current-val 0) 0))
803 (funcall (char-table-extra-slot table 1) char current-val table))
804 (aset table char val)))
806 (defun unidata-get-decomposition (char val table)
807 (cond
808 ((consp val)
809 val)
811 ((stringp val)
812 (if (> (aref val 0) 0)
814 (let* ((first-char (lsh (lsh char -7) 7))
815 (word-table (char-table-extra-slot table 4))
816 (i 1)
817 (len (length val))
818 (vec (make-vector 128 nil))
819 (idx 0)
820 (case-fold-search nil)
821 c word-list tail-list last-list word diff-head)
822 (while (< i len)
823 (setq c (aref val i))
824 (if (< c 3)
825 (progn
826 (if (or word-list tail-list)
827 (aset vec idx
828 (setq last-list (nconc word-list tail-list))))
829 (setq i (1+ i) idx (1+ idx)
830 word-list nil tail-list nil)
831 (if (> c 0)
832 (let ((l last-list))
833 (if (= c 1)
834 (setq diff-head
835 (prog1 (aref val i) (setq i (1+ i)))))
836 (setq tail-list (nthcdr (% diff-head 16) last-list))
837 (dotimes (i (/ diff-head 16))
838 (setq word-list (nconc word-list (list (car l)))
839 l (cdr l))))))
840 (setq word-list
841 (nconc word-list
842 (list (or (unidata-decode-word c word-table) c)))
843 i (1+ i))))
844 (if (or word-list tail-list)
845 (aset vec idx (nconc word-list tail-list)))
846 (dotimes (i 128)
847 (aset table (+ first-char i) (aref vec i)))
848 (aref vec (- char first-char)))))
850 ;; Hangul syllable
851 ((and (eq val 0) (>= char #xAC00) (<= char #xD7A3))
852 ;; SIndex = S (char) - SBase (#xAC00)
853 (setq char (- char #xAC00))
854 (let (;; L = LBase + SIndex / NCount
855 (L (+ #x1100 (/ char 588)))
856 ;; V = VBase + (SIndex % NCount) * TCount
857 (V (+ #x1161 (/ (% char 588) 28)))
858 ;; LV = SBase + (SIndex / TCount) * TCount
859 (LV (+ #xAC00 (* (/ char 28) 28)))
860 ;; T = TBase + SIndex % TCount
861 (T (+ #x11A7 (% char 28))))
862 (if (= T #x11A7)
863 (list L V)
864 (list LV T))))
868 ;; Store VAL as the decomposition information of CHAR in TABLE.
870 (defun unidata-put-decomposition (char val table)
871 (let ((current-val (aref table char)))
872 (if (and (stringp current-val) (= (aref current-val 0) 0))
873 (funcall (char-table-extra-slot table 1) char current-val table))
874 (aset table char val)))
876 ;; UnicodeData.txt contains these lines:
877 ;; 0000;<control>;Cc;0;BN;;;;;N;NULL;;;;
878 ;; ...
879 ;; 0020;SPACE;Zs;0;WS;;;;;N;;;;;
880 ;; ...
881 ;; The following command yields a file of about 96K bytes.
882 ;; % gawk -F ';' '{print $1,$2;}' < UnicodeData.txt | gzip > temp.gz
883 ;; With the following function, we can get a file of almost the same
884 ;; the size.
886 ;; Generate a char-table for character names.
888 (defun unidata-gen-table-word-list (prop val-func)
889 (let ((table (make-char-table 'char-code-property-table))
890 (prop-idx (unidata-prop-index prop))
891 (word-list (list nil))
892 word-table
893 block-list block-word-table block-end
894 tail elt range val idx slot)
895 (set-char-table-range table (cons 0 (max-char)) 0)
896 (setq tail unidata-list)
897 (setq block-end -1)
898 (while tail
899 (setq elt (car tail) tail (cdr tail))
900 (setq range (car elt)
901 val (funcall val-func (nth prop-idx elt)))
902 ;; Treat the sequence of "CJK COMPATIBILITY IDEOGRAPH-XXXX" and
903 ;; "VARIATION SELECTOR-XXX" as a block.
904 (if (and (consp val) (eq prop 'name)
905 (or (and (eq (car val) 'CJK)
906 (eq (nth 1 val) 'COMPATIBILITY))
907 (and (>= range #xe0100)
908 (eq (car val) 'VARIATION)
909 (eq (nth 1 val) 'SELECTOR))))
910 (let ((first (car val))
911 (second (nth 1 val))
912 (start range))
913 (while (and (setq elt (car tail) range (car elt)
914 val (funcall val-func (nth prop-idx elt)))
915 (consp val)
916 (eq first (car val))
917 (eq second (nth 1 val)))
918 (setq block-end range
919 tail (cdr tail)))
920 (setq range (cons start block-end)
921 val (if (eq first 'CJK) 'CJK\ COMPATIBILITY\ IDEOGRAPH
922 'VARIATION\ SELECTOR))))
924 (if (consp range)
925 (if val
926 (let ((slot (assq val block-list)))
927 (setq range (cons (car range) (cdr range)))
928 (setq block-end (cdr range))
929 (if slot
930 (nconc slot (list range))
931 (push (list val range) block-list))))
932 (let* ((start (lsh (lsh range -7) 7))
933 (limit (+ start 127))
934 (first tail)
935 (vec (make-vector 128 nil))
936 c name len)
937 (if (<= start block-end)
938 ;; START overlap with the previous block.
939 (aset table range (nth prop-idx elt))
940 (if val
941 (aset vec (- range start) val))
942 (while (and (setq elt (car tail) range (car elt))
943 (integerp range)
944 (<= range limit))
945 (setq val (funcall val-func (nth prop-idx elt)))
946 (if val
947 (aset vec (- range start) val))
948 (setq tail (cdr tail)))
949 (setq vec (unidata-word-list-compress vec))
950 (when vec
951 (dotimes (i (length vec))
952 (dolist (elt (aref vec i))
953 (if (symbolp elt)
954 (let ((slot (assq elt word-list)))
955 (if slot
956 (setcdr slot (1+ (cdr slot)))
957 (setcdr word-list
958 (cons (cons elt 1) (cdr word-list))))))))
959 (set-char-table-range table (cons start limit) vec))))))
960 (setq word-list (sort (cdr word-list)
961 #'(lambda (x y) (> (cdr x) (cdr y)))))
962 (setq tail word-list idx 0)
963 (while tail
964 (setcdr (car tail) (unidata-encode-word idx))
965 (setq idx (1+ idx) tail (cdr tail)))
966 (setq word-table (make-vector (length word-list) nil))
967 (setq idx 0)
968 (dolist (elt word-list)
969 (aset word-table idx (car elt))
970 (setq idx (1+ idx)))
972 (if (and (eq prop 'decomposition)
973 (> idx 32))
974 (error "Too many symbols in decomposition data"))
976 (dotimes (i (/ #x110000 128))
977 (let* ((idx (* i 128))
978 (vec (aref table idx)))
979 (when (vectorp vec)
980 (dotimes (i (length vec))
981 (let ((tail (aref vec i))
982 elt code)
983 (if (not tail)
984 (aset vec i "\0")
985 (while tail
986 (setq elt (car tail)
987 code (if (integerp elt) elt
988 (cdr (assq elt word-list))))
989 (setcar tail (string code))
990 (setq tail (cdr tail)))
991 (aset vec i (mapconcat 'identity (aref vec i) "")))))
992 (set-char-table-range
993 table (cons idx (+ idx 127))
994 (mapconcat 'identity vec "")))))
996 (setq block-word-table (make-vector (length block-list) nil))
997 (setq idx 0)
998 (dolist (elt block-list)
999 (dolist (e (cdr elt))
1000 (set-char-table-range table e (1+ idx)))
1001 (aset block-word-table idx (car elt))
1002 (setq idx (1+ idx)))
1004 (set-char-table-extra-slot table 0 prop)
1005 (set-char-table-extra-slot table 4 (cons word-table block-word-table))
1006 table))
1008 (defun unidata-split-name (str)
1009 (if (symbolp str)
1011 (let ((len (length str))
1012 (l nil)
1013 (idx 0)
1015 (if (= len 0)
1017 (dotimes (i len)
1018 (setq c (aref str i))
1019 (if (= c 32)
1020 (setq l (cons (intern (substring str idx i)) l)
1021 idx (1+ i))
1022 (if (and (= c ?-) (< idx i)
1023 (< (1+ i) len) (/= (aref str (1+ i)) 32))
1024 (setq l (cons '- (cons (intern (substring str idx i)) l))
1025 idx (1+ i)))))
1026 (nreverse (cons (intern (substring str idx)) l))))))
1028 (defun unidata-gen-table-name (prop)
1029 (let* ((table (unidata-gen-table-word-list prop 'unidata-split-name))
1030 (word-tables (char-table-extra-slot table 4)))
1031 (byte-compile 'unidata-get-name)
1032 (byte-compile 'unidata-put-name)
1033 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-name))
1034 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-name))
1036 (if (eq prop 'name)
1037 (set-char-table-extra-slot table 4
1038 (vector (car word-tables)
1039 (cdr word-tables)
1040 unidata-name-jamo-name-table))
1041 (set-char-table-extra-slot table 4
1042 (vector (car word-tables))))
1043 table))
1045 (defun unidata-split-decomposition (str)
1046 (if (symbolp str)
1048 (let ((len (length str))
1049 (l nil)
1050 (idx 0)
1052 (if (= len 0)
1054 (dotimes (i len)
1055 (setq c (aref str i))
1056 (if (= c 32)
1057 (setq l (if (= (aref str idx) ?<)
1058 (cons (intern (substring str (1+ idx) (1- i))) l)
1059 (cons (string-to-number (substring str idx i) 16) l))
1060 idx (1+ i))))
1061 (if (= (aref str idx) ?<)
1062 (setq l (cons (intern (substring str (1+ idx) (1- len))) l))
1063 (setq l (cons (string-to-number (substring str idx len) 16) l)))
1064 (nreverse l)))))
1067 (defun unidata-gen-table-decomposition (prop)
1068 (let* ((table (unidata-gen-table-word-list prop 'unidata-split-decomposition))
1069 (word-tables (char-table-extra-slot table 4)))
1070 (byte-compile 'unidata-get-decomposition)
1071 (byte-compile 'unidata-put-decomposition)
1072 (set-char-table-extra-slot table 1
1073 (symbol-function 'unidata-get-decomposition))
1074 (set-char-table-extra-slot table 2
1075 (symbol-function 'unidata-put-decomposition))
1076 (set-char-table-extra-slot table 4 (car word-tables))
1077 table))
1081 (defun unidata-describe-general-category (val)
1082 (cdr (assq val
1083 '((Lu . "Letter, Uppercase")
1084 (Ll . "Letter, Lowercase")
1085 (Lt . "Letter, Titlecase")
1086 (Lm . "Letter, Modifier")
1087 (Lo . "Letter, Other")
1088 (Mn . "Mark, Nonspacing")
1089 (Mc . "Mark, Spacing Combining")
1090 (Me . "Mark, Enclosing")
1091 (Nd . "Number, Decimal Digit")
1092 (Nl . "Number, Letter")
1093 (No . "Number, Other")
1094 (Pc . "Punctuation, Connector")
1095 (Pd . "Punctuation, Dash")
1096 (Ps . "Punctuation, Open")
1097 (Pe . "Punctuation, Close")
1098 (Pi . "Punctuation, Initial quote")
1099 (Pf . "Punctuation, Final quote")
1100 (Po . "Punctuation, Other")
1101 (Sm . "Symbol, Math")
1102 (Sc . "Symbol, Currency")
1103 (Sk . "Symbol, Modifier")
1104 (So . "Symbol, Other")
1105 (Zs . "Separator, Space")
1106 (Zl . "Separator, Line")
1107 (Zp . "Separator, Paragraph")
1108 (Cc . "Other, Control")
1109 (Cf . "Other, Format")
1110 (Cs . "Other, Surrogate")
1111 (Co . "Other, Private Use")
1112 (Cn . "Other, Not Assigned")))))
1114 (defun unidata-describe-canonical-combining-class (val)
1115 (cdr (assq val
1116 '((0 . "Spacing, split, enclosing, reordrant, and Tibetan subjoined")
1117 (1 . "Overlays and interior")
1118 (7 . "Nuktas")
1119 (8 . "Hiragana/Katakana voicing marks")
1120 (9 . "Viramas")
1121 (10 . "Start of fixed position classes")
1122 (199 . "End of fixed position classes")
1123 (200 . "Below left attached")
1124 (202 . "Below attached")
1125 (204 . "Below right attached")
1126 (208 . "Left attached (reordrant around single base character)")
1127 (210 . "Right attached")
1128 (212 . "Above left attached")
1129 (214 . "Above attached")
1130 (216 . "Above right attached")
1131 (218 . "Below left")
1132 (220 . "Below")
1133 (222 . "Below right")
1134 (224 . "Left (reordrant around single base character)")
1135 (226 . "Right")
1136 (228 . "Above left")
1137 (230 . "Above")
1138 (232 . "Above right")
1139 (233 . "Double below")
1140 (234 . "Double above")
1141 (240 . "Below (iota subscript)")))))
1143 (defun unidata-describe-bidi-class (val)
1144 (cdr (assq val
1145 '((L . "Left-to-Right")
1146 (LRE . "Left-to-Right Embedding")
1147 (LRO . "Left-to-Right Override")
1148 (R . "Right-to-Left")
1149 (AL . "Right-to-Left Arabic")
1150 (RLE . "Right-to-Left Embedding")
1151 (RLO . "Right-to-Left Override")
1152 (PDF . "Pop Directional Format")
1153 (EN . "European Number")
1154 (ES . "European Number Separator")
1155 (ET . "European Number Terminator")
1156 (AN . "Arabic Number")
1157 (CS . "Common Number Separator")
1158 (NSM . "Non-Spacing Mark")
1159 (BN . "Boundary Neutral")
1160 (B . "Paragraph Separator")
1161 (S . "Segment Separator")
1162 (WS . "Whitespace")
1163 (ON . "Other Neutrals")))))
1165 (defun unidata-describe-decomposition (val)
1166 (mapconcat
1167 #'(lambda (x)
1168 (if (symbolp x) (symbol-name x)
1169 (concat (string ?')
1170 (compose-string (string x) 0 1 (string ?\t x ?\t))
1171 (string ?'))))
1172 val " "))
1174 ;; Verify if we can retrieve correct values from the generated
1175 ;; char-tables.
1177 (defun unidata-check ()
1178 (dolist (elt unidata-prop-alist)
1179 (let* ((prop (car elt))
1180 (index (unidata-prop-index prop))
1181 (generator (unidata-prop-generator prop))
1182 (table (progn
1183 (message "Generating %S table..." prop)
1184 (funcall generator prop)))
1185 (decoder (char-table-extra-slot table 1))
1186 (check #x400))
1187 (dolist (e unidata-list)
1188 (let ((char (car e))
1189 (val1 (nth index e))
1190 val2)
1191 (if (and (stringp val1) (= (length val1) 0))
1192 (setq val1 nil))
1193 (unless (consp char)
1194 (setq val2 (funcall decoder char (aref table char) table))
1195 (if val1
1196 (cond ((eq generator 'unidata-gen-table-symbol)
1197 (setq val1 (intern val1)))
1198 ((eq generator 'unidata-gen-table-integer)
1199 (setq val1 (string-to-number val1)))
1200 ((eq generator 'unidata-gen-table-character)
1201 (setq val1 (string-to-number val1 16)))
1202 ((eq generator 'unidata-gen-table-decomposition)
1203 (setq val1 (unidata-split-decomposition val1)))))
1204 (when (>= char check)
1205 (message "%S %04X" prop check)
1206 (setq check (+ check #x400)))
1207 (or (equal val1 val2)
1208 (insert (format "> %04X %S\n< %04X %S\n"
1209 char val1 char val2)))
1210 (sit-for 0)))))))
1212 ;; The entry function. It generates files described in the header
1213 ;; comment of this file.
1215 (defun unidata-gen-files (&optional unidata-text-file)
1216 (or unidata-text-file
1217 (setq unidata-text-file (car command-line-args-left)
1218 command-line-args-left (cdr command-line-args-left)))
1219 (unidata-setup-list unidata-text-file)
1220 (let ((coding-system-for-write 'utf-8-unix)
1221 (charprop-file "charprop.el"))
1222 (with-temp-file charprop-file
1223 (insert ";; Automatically generated by unidata-gen.el.\n")
1224 (dolist (elt unidata-prop-alist)
1225 (let* ((prop (car elt))
1226 (generator (unidata-prop-generator prop))
1227 (file (unidata-prop-file prop))
1228 (docstring (unidata-prop-docstring prop))
1229 (describer (unidata-prop-describer prop))
1230 table)
1231 ;; Filename in this comment line is extracted by sed in
1232 ;; Makefile.
1233 (insert (format ";; FILE: %s\n" file))
1234 (insert (format "(define-char-code-property '%S %S\n %S)\n"
1235 prop file docstring))
1236 (with-temp-file file
1237 (message "Generating %s..." file)
1238 (setq table (funcall generator prop))
1239 (when describer
1240 (unless (subrp (symbol-function describer))
1241 (byte-compile describer)
1242 (setq describer (symbol-function describer)))
1243 (set-char-table-extra-slot table 3 describer))
1244 (insert ";; Copyright (C) 1991-2009 Unicode, Inc.
1245 ;; This file was generated from the Unicode data file at
1246 ;; http://www.unicode.org/Public/UNIDATA/UnicodeData.txt.
1247 ;; See lisp/international/README for the copyright and permission notice.\n"
1248 (format "(define-char-code-property '%S %S %S)\n"
1249 prop table docstring)
1250 ";; Local Variables:\n"
1251 ";; coding: utf-8\n"
1252 ";; no-byte-compile: t\n"
1253 ";; End:\n\n"
1254 (format ";; %s ends here\n" file)))))
1255 (message "Writing %s..." charprop-file)
1256 (insert ";; Local Variables:\n"
1257 ";; coding: utf-8\n"
1258 ";; no-byte-compile: t\n"
1259 ";; End:\n\n"
1260 (format ";; %s ends here\n" charprop-file)))))
1264 ;;; unidata-gen.el ends here