New file.
[chise/tomoyo-tools.git] / non-ideo-dump.el
1 (let ((ranges
2        '((#x0000 #x001F "u00000-C0.el")
3          (#x0020 #x007F "u00020-Basic-Latin.el")
4          (#x0080 #x009F "u00080-C1.el")
5          (#x00A0 #x00FF "u000A0-Latin-1-Supplement.el")
6          (#x0100 #x017F "u00100-Latin-Extended-A.el")
7          (#x0180 #x024F "u00180-Latin-Extended-B.el")
8          (#x0250 #x02AF "u00250-IPA-Extensions.el")
9          (#x02B0 #x02FF "u002B0-Spacing-Modifier-Letters.el")
10          (#x0300 #x036F "u00300-Combining-Diacritical-Marks.el")
11          (#x0370 #x03FF "u00370-Greek.el")
12          (#x0400 #x04FF "u00400-Cyrillic.el")
13          (#x0530 #x058F "u00530-Armenian.el")
14          (#x0590 #x05FF "u00590-Hebrew.el")
15          (#x0600 #x06FF "u00600-Arabic.el")
16          (#x0700 #x074F "u00700-Syriac.el")
17          (#x0780 #x07BF "u00780-Thaana.el")
18          (#x0900 #x097F "u00900-Devanagari.el")
19          (#x0980 #x09FF "u00980-Bengali.el")
20          (#x0E00 #x0E7F "u00E00-Thai.el")
21          (#x0E80 #x0EFF "u00E80-Lao.el")
22          (#x1200 #x137C "u01200-Ethiopic.el")
23          (#x13A0 #x13FF "u013A0-Cherokee.el")
24          (#x1E00 #x1EFF "u01E00-Latin-Extended-Additional.el")
25          (#x1F00 #x1FFF "u01F00-Greek-Extended.el")
26          (#x2000 #x206F "u02000-General-Punctuation.el")
27          (#x2070 #x207F "u02070-Superscripts.el")
28          (#x2080 #x208F "u02080-Subscripts.el")
29          (#x20A0 #x20AF "u020A0-Currency-Symbols.el")
30          (#x20D0 #x20FF "u020D0-Combining-Diacritical-Marks-for-Symbols.el")
31          (#x2100 #x214F "u02100-Letterlike-Symbols.el")
32          (#x2150 #x218F "u02150-Number-Forms.el")
33          (#x2190 #x21FF "u02190-Arrows.el")
34          (#x2200 #x22FF "u02200-Mathematical-Operators.el")
35          (#x2300 #x239F "u02300-Miscellaneous-Technical.el")
36          (#x2400 #x243F "u02400-Control-Pictures.el")
37          (#x2440 #x244A "u02440-OCR.el")
38          (#x2460 #x24FF "u02460-Enclosed-Alphanumerics.el")
39          (#x2500 #x257F "u02500-Box-Drawing.el")
40          (#x2580 #x259F "u02580-Block-Elements.el")
41          (#x25A0 #x25FF "u025A0-Geometric-Shapes.el")
42          (#x2600 #x267F "u02600-Miscellaneous-Symbols.el")
43          (#x2700 #x27BF "u02700-Dingbats.el")
44          (#x2800 #x28FF "u02800-Braille-Patterns.el")
45          (#x2E00 #x2EFF "u02E00-CJK-Radical-Supplement.el")
46          (#x2F00 #x2FEF "u02F00-Kangxi-Radicals.el")
47          (#x2FF0 #x2FFF "u02FF0-Ideographic-Description-Characters.el")
48          (#x3000 #x303F "u03000-CJK-Symbols-and-Punctuation.el" nil Ideograph)
49          (#x3040 #x309F "u03040-Hiragana.el")
50          (#x30A0 #x30FF "u030A0-Katakana.el")
51          (#x3100 #x312F "u03100-Bopomofo.el" 'Bopomofo)
52          (#x3130 #x318F "u03130-Hangul-Compatibility-Jamo.el")
53          (#x3190 #x319F "u03190-Kanbun.el")
54          (#x31A0 #x31BF "u031A0-Bopomofo-Extended.el")
55          (#x3200 #x32FF "u03200-Enclosed-CJK-Letters-and-Months.el")
56          (#x3300 #x33FF "u03300-CJK-Compatibility.el")
57          ;; snip CJK Unified Ideographs
58          (#xE000 #xF8FF "u0E000-Private-Use.el")
59          (#xFB00 #xFB4F "u0FB00-Alphabetic-Presentation-Forms.el")
60          (#xFB50 #xFDFF "u0FB50-Arabic-Presentation-Forms-A.el")
61          (#xFE20 #xFE2F "u0FE20-Combining-Half-Marks.el")
62          (#xFE30 #xFE4F "u0FE30-CJK-Compatibility-Forms.el")
63          (#xFE50 #xFE6F "u0FE50-Small-Form-Variants.el")
64          (#xFE70 #xFEFF "u0FE70-Arabic-Presentation-Forms-B.el")
65          (#xFF00 #xFFEF "u0FF00-Halfwidth-and-Fullwidth-Forms.el")
66          )))
67   (dolist (range ranges)
68     (write-char-range-data-to-file
69      (car range) (nth 1 range)
70      (expand-file-name (nth 2 range) "/var/tmp")
71      (nth 3 range)(nth 4 range))
72     ))