(default-coded-charset-priority-list): Add `=ucs-sip-itaiji-013'.
[chise/xemacs-chise.git] / lisp / mule / mule-charset.el
1 ;;; mule-charset.el --- Charset functions for Mule.
2
3 ;; Copyright (C) 1992 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995 Amdahl Corporation.
5 ;; Copyright (C) 1996 Sun Microsystems.
6 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
7 ;;   2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
8 ;;   2020, 2021, 2022, 2023 MORIOKA Tomohiko
9
10 ;; Author: Unknown
11 ;; Keywords: i18n, mule, internal
12
13 ;; This file is part of XEmacs.
14
15 ;; XEmacs is free software; you can redistribute it and/or modify it
16 ;; under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; any later version.
19
20 ;; XEmacs is distributed in the hope that it will be useful, but
21 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23 ;; General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with XEmacs; see the file COPYING.  If not, write to the 
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
29
30 ;;; Synched up with: Not synched.  API at source level synched with FSF 20.3.9.
31
32 ;;; Commentary:
33
34 ;; These functions are not compatible at the bytecode level with Emacs/Mule,
35 ;; and they never will be.  -sb [1999-05-26]
36
37 ;;; Code:
38 \f
39 ;;;; Classifying text according to charsets
40
41 (defun charsets-in-region (start end &optional buffer)
42   "Return a list of the charsets in the region between START and END.
43 BUFFER defaults to the current buffer if omitted."
44   (let (list)
45     (save-excursion
46       (if buffer
47           (set-buffer buffer))
48       (save-restriction
49         (narrow-to-region start end)
50         (goto-char (point-min))
51         (while (not (eobp))
52           (let* (prev-charset
53                  (ch (char-after (point)))
54                  (charset (char-charset ch)))
55             (if (not (eq prev-charset charset))
56                 (progn
57                   (setq prev-charset charset)
58                   (or (memq charset list)
59                       (setq list (cons charset list))))))
60           (forward-char))))
61     list))
62
63 (defun charsets-in-string (string)
64   "Return a list of the charsets in STRING."
65   (let ((i 0)
66         (len (length string))
67         prev-charset charset list)
68     (while (< i len)
69       (setq charset (char-charset (aref string i)))
70       (if (not (eq prev-charset charset))
71           (progn
72             (setq prev-charset charset)
73             (or (memq charset list)
74                 (setq list (cons charset list)))))
75       (setq i (1+ i)))
76     list))
77
78 \f
79 ;;;; Charset accessors
80
81 (defun charset-iso-graphic-plane (charset)
82   "Return the `graphic' property of CHARSET.
83 See `make-charset'."
84   (charset-property charset 'graphic))
85
86 (defun charset-iso-final-char (charset)
87   "Return the final byte of the ISO 2022 escape sequence designating CHARSET."
88   (charset-property charset 'final))
89
90 (defun charset-chars (charset)
91   "Return the number of characters per dimension of CHARSET."
92   (charset-property charset 'chars))
93
94 (defun charset-width (charset)
95   "Return the number of display columns per character of CHARSET.
96 This only applies to TTY mode (under X, the actual display width can
97 be automatically determined)."
98   (charset-property charset 'columns))
99
100 ;; #### FSFmacs returns 0
101 (defun charset-direction (charset)
102   "Return the display direction (0 for `l2r' or 1 for `r2l') of CHARSET.
103 Only left-to-right is currently implemented."
104   (if (eq (charset-property charset 'direction) 'l2r)
105       0
106     1))
107
108 ;; Not in Emacs/Mule
109 (defun charset-registry (charset)
110   "Return the registry of CHARSET.
111 This is a regular expression matching the registry field of fonts
112 that can display the characters in CHARSET."
113   (charset-property charset 'registry))
114
115 (defun charset-ccl-program (charset)
116   "Return the CCL program of CHARSET.
117 See `make-charset'."
118   (charset-property charset 'ccl-program))
119
120 (defun charset-bytes (charset)
121   "Useless in XEmacs, returns 1."
122    1)
123
124 (define-obsolete-function-alias 'charset-columns 'charset-width) ;; 19990409
125 (define-obsolete-function-alias 'charset-final 'charset-iso-final-char) ;; 19990409
126 (define-obsolete-function-alias 'charset-graphic 'charset-iso-graphic-plane) ;; 19990409
127 (define-obsolete-function-alias 'charset-doc-string 'charset-description) ;; 19990409
128
129 ;;;; Define setf methods for all settable Charset properties
130
131 (defsetf charset-registry    set-charset-registry)
132 (defsetf charset-ccl-program set-charset-ccl-program)
133
134 ;;; FSF compatibility functions
135 (defun charset-after (&optional pos)
136   "Return charset of a character in current buffer at position POS.
137 If POS is nil, it defauls to the current point.
138 If POS is out of range, the value is nil."
139   (when (null pos)
140     (setq pos (point)))
141   (check-argument-type 'integerp pos)
142   (unless (or (< pos (point-min))
143               (> pos (point-max)))
144     (char-charset (char-after pos))))
145
146 ;; Yuck!
147 ;; We're not going to support this.
148 ;(defun charset-info (charset)
149 ;  "Return a vector of information of CHARSET.
150 ;The elements of the vector are:
151 ;        CHARSET-ID, BYTES, DIMENSION, CHARS, WIDTH, DIRECTION,
152 ;        LEADING-CODE-BASE, LEADING-CODE-EXT,
153 ;        ISO-FINAL-CHAR, ISO-GRAPHIC-PLANE,
154 ;        REVERSE-CHARSET, SHORT-NAME, LONG-NAME, DESCRIPTION,
155 ;        PLIST,
156 ;where
157 ;CHARSET-ID (integer) is the identification number of the charset.
158 ;BYTES (integer) is the length of multi-byte form of a character in
159 ;  the charset: one of 1, 2, 3, and 4.
160 ;DIMENSION (integer) is the number of bytes to represent a character of
161 ;the charset: 1 or 2.
162 ;CHARS (integer) is the number of characters in a dimension: 94 or 96.
163 ;WIDTH (integer) is the number of columns a character in the charset
164 ;  occupies on the screen: one of 0, 1, and 2.
165 ;DIRECTION (integer) is the rendering direction of characters in the
166 ;  charset when rendering.  If 0, render from left to right, else
167 ;  render from right to left.
168 ;LEADING-CODE-BASE (integer) is the base leading-code for the
169 ;  charset.
170 ;LEADING-CODE-EXT (integer) is the extended leading-code for the
171 ;  charset.  All charsets of less than 0xA0 has the value 0.
172 ;ISO-FINAL-CHAR (character) is the final character of the
173 ;  corresponding ISO 2022 charset.
174 ;ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked
175 ;  while encoding to variants of ISO 2022 coding system, one of the
176 ;  following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR).
177 ;REVERSE-CHARSET (integer) is the charset which differs only in
178 ;  LEFT-TO-RIGHT value from the charset.  If there's no such a
179 ;  charset, the value is -1.
180 ;SHORT-NAME (string) is the short name to refer to the charset.
181 ;LONG-NAME (string) is the long name to refer to the charset
182 ;DESCRIPTION (string) is the description string of the charset.
183 ;PLIST (property list) may contain any type of information a user
184 ;  want to put and get by functions `put-charset-property' and
185 ;  `get-charset-property' respectively."
186 ;  (vector
187 ;   (charset-id charset)
188 ;   1
189 ;   (charset-dimension charset)
190 ;   (charset-chars charset)
191 ;   (charset-width charset)
192 ;   (charset-direction charset)
193 ;   nil ;; (charset-leading-code-base (charset))
194 ;   nil ;; (charset-leading-code-ext (charset))
195 ;   (charset-iso-final-char charset)
196 ;   (charset-iso-graphic-plane charset)
197 ;   -1
198 ;   (charset-short-name charset)
199 ;   (charset-long-name charset)
200 ;   (charset-description charset)
201 ;   (charset-plist charset)))
202
203 ;(make-compatible 'charset-info "Don't use this if you can help it.")
204
205 (defun define-charset (charset-id charset property-vector)
206   "Define CHARSET-ID as the identification number of CHARSET with INFO-VECTOR.
207 If CHARSET-ID is nil, it is decided automatically, which means CHARSET is
208  treated as a private charset.
209 INFO-VECTOR is a vector of the format:
210    [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE
211     SHORT-NAME LONG-NAME DESCRIPTION]
212 The meanings of each elements is as follows:
213 DIMENSION (integer) is the number of bytes to represent a character: 1 or 2.
214 CHARS (integer) is the number of characters in a dimension: 94 or 96.
215 WIDTH (integer) is the number of columns a character in the charset
216 occupies on the screen: one of 0, 1, and 2.
217
218 DIRECTION (integer) is the rendering direction of characters in the
219 charset when rendering.  If 0, render from left to right, else
220 render from right to left.
221
222 ISO-FINAL-CHAR (character) is the final character of the
223 corresponding ISO 2022 charset.
224
225 ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked
226 while encoding to variants of ISO 2022 coding system, one of the
227 following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR).
228
229
230 SHORT-NAME (string) is the short name to refer to the charset.
231
232 LONG-NAME (string) is the long name to refer to the charset.
233
234 DESCRIPTION (string) is the description string of the charset."
235   (make-charset charset (aref property-vector 8)
236                 (list
237                  'short-name (aref property-vector 6)
238                  'long-name (aref property-vector 7)
239                  'dimension (aref property-vector 0)
240                  'columns (aref property-vector 2)
241                  'chars (aref property-vector 1)
242                  'final (aref property-vector 4)
243                  'graphic (aref property-vector 5)
244                  'direction (aref property-vector 3))))
245
246 (make-compatible 'define-charset "")
247
248 ;;; Charset property
249
250 (defalias 'get-charset-property 'get)
251 (defalias 'put-charset-property 'put)
252 (defalias 'charset-plist 'object-plist)
253 (defalias 'set-charset-plist 'setplist)
254
255 ;; Setup auto-fill-chars for charsets that should invoke auto-filling.
256 ;; SPACE and NEWLIE are already set.
257 ;; (let ((l '(katakana-jisx0201
258 ;;            japanese-jisx0208 japanese-jisx0212
259 ;;            chinese-gb2312 chinese-big5-1 chinese-big5-2)))
260 ;;   (while l
261 ;;     (put-char-table (car l) t auto-fill-chars)
262 ;;     (setq l (cdr l))))
263
264
265 ;;; @ Coded character set
266 ;;;
267
268 (when (featurep 'utf-2000)
269   (setq default-coded-charset-priority-list
270         '(ascii
271           control-1
272           latin-iso8859-1
273           latin-iso8859-2
274           latin-iso8859-3
275           latin-iso8859-4
276           latin-iso8859-9
277           latin-jisx0201
278           cyrillic-iso8859-5
279           greek-iso8859-7
280           thai-tis620
281           =jis-x0208
282           =ucs-radicals
283           =ucs-radicals@unicode
284           =ucs-itaiji-001-additional-idc
285           ;; =ucs-bmp-cjk@JP
286           =mj-0
287           =mj-1
288           =ucs-bmp-cjk@JP/hanazono
289           =ucs-bmp-cjk@gb
290           =jis-x0208@1983
291           chinese-gb2312
292           =jis-x0208-1990
293           japanese-jisx0208-1978
294           =jis-x0212
295           chinese-cns11643-1
296           chinese-cns11643-2
297           chinese-cns11643-3
298           chinese-cns11643-4
299           chinese-cns11643-5
300           chinese-cns11643-6
301           chinese-cns11643-7
302           =adobe-japan1-0
303           =adobe-japan1-1
304           =adobe-japan1-2
305           =adobe-japan1-3
306           =adobe-japan1-4
307           =adobe-japan1-5
308           =adobe-japan1-6
309           =big5-cdp
310           =hanyo-denshi/ja
311           =hanyo-denshi/jb
312           =hanyo-denshi/jc
313           =hanyo-denshi/jd
314           =hanyo-denshi/ft
315           =hanyo-denshi/ia
316           =hanyo-denshi/ib
317           =hanyo-denshi/hg
318           =hanyo-denshi/ip
319           =hanyo-denshi/jt
320           =hanyo-denshi/ks/mf
321           =hanyo-denshi/tk/mf-01
322           =gt-pj-2
323           =gt-pj-3
324           =gt-pj-4
325           =gt-pj-5
326           =gt-pj-6
327           =gt-pj-7
328           =gt-pj-8
329           =gt-pj-9
330           =gt-pj-10
331           =gt-pj-11
332           =gt-pj-k1
333           =gt-pj-k2
334           chinese-big5-eten-a
335           chinese-big5-eten-b
336           chinese-big5
337           =jis-x0213-1-2000
338           =jis-x0213-2-2000
339           ;; chinese-gb12345
340           =gt-pj-1
341           =ucs-bmp-cjk
342           =ucs-sip-ext-b
343           =ucs-tip
344           =ucs-sip-ext-b@iso
345           =ucs-sip@JP/hanazono
346           =ucs-tip@JP/hanazono
347           =ucs-sip@gb
348           chinese-big5-1
349           chinese-big5-2
350           ;; =zihai-17xx
351           =ucs-bmp-var-001
352           =ucs-sip-var-001
353           =ucs-tip-var-001
354           =ucs-bmp-var-002
355           =ucs-sip-var-002
356           =ucs-tip-var-002
357           =ucs-bmp-var-003
358           =ucs-sip-var-003
359           =ucs-tip-var-003
360           =ucs-bmp-var-004
361           =ucs-sip-var-004
362           =ucs-tip-var-004
363           =ucs-bmp-var-005
364           =ucs-sip-var-005
365           =ucs-bmp-var-006
366           =ucs-sip-var-006
367           =ucs-bmp-var-007
368           =ucs-bmp-var-008
369           =ucs-bmp-var-010
370           =ucs-sip-var-010
371           =ucs-bmp-itaiji-001
372           =ucs-sip-itaiji-001
373           =ucs-tip-itaiji-001
374           =ucs-bmp-itaiji-002
375           =ucs-sip-itaiji-002
376           =ucs-bmp-itaiji-003
377           =ucs-sip-itaiji-003
378           =ucs-bmp-itaiji-004
379           =ucs-sip-itaiji-004
380           =ucs-bmp-itaiji-005
381           =ucs-sip-itaiji-005
382           =ucs-bmp-itaiji-006
383           =ucs-sip-itaiji-006
384           =ucs-bmp-itaiji-007
385           =ucs-sip-itaiji-007
386           =ucs-bmp-itaiji-008
387           =ucs-sip-itaiji-008
388           =ucs-bmp-itaiji-009
389           =ucs-sip-itaiji-009
390           =ucs-bmp-itaiji-010
391           =ucs-sip-itaiji-010
392           =ucs-bmp-itaiji-011
393           =ucs-sip-itaiji-011
394           =ucs-bmp-itaiji-012
395           =ucs-sip-itaiji-012
396           =ucs-sip-itaiji-013
397           =ucs-bmp-itaiji-014
398           =ucs-bmp-itaiji-016
399           =ucs-bmp-itaiji-018
400           =ucs-bmp-itaiji-084
401           =big5-cdp-itaiji-001
402           =big5-cdp-itaiji-002
403           =big5-cdp-itaiji-003
404           =big5-cdp-itaiji-004
405           =big5-cdp-itaiji-005
406           =big5-cdp-itaiji-006
407           =big5-cdp-var-001
408           =big5-cdp-var-002
409           =big5-cdp-var-003
410           =big5-cdp-var-004
411           =big5-cdp-var-005
412           =big5-cdp-var-007
413           =big5-cdp-var-008
414           =big5-cdp-var-010
415           =ucs-bmp-cjk-compat
416           =ucs-bmp-cjk-compat@unicode
417           =ruimoku-v6
418           =zinbun-oracle
419           =hanziku-1
420           =hanziku-2
421           =hanziku-3
422           =hanziku-4
423           =hanziku-5
424           =hanziku-6
425           =hanziku-7
426           =hanziku-8
427           =hanziku-9
428           =hanziku-10
429           =hanziku-11
430           =hanziku-12
431           =ucs-sip@iso
432           =daikanwa@rev2
433           ideograph-daikanwa
434           korean-ksc5601
435           katakana-jisx0201
436           hebrew-iso8859-8
437           latin-viscii
438           latin-viscii-lower
439           latin-viscii-upper
440           ipa
441           lao
442           ethiopic-ucs
443           ethiopic
444           arabic-digit
445           arabic-1-column
446           arabic-2-column
447           arabic-iso8859-6
448           =daijiten
449           =cbeta
450           =jef-china3
451           chinese-isoir165
452           =ucs-sip@cns
453           ===chise-hdic-tsj
454           =chise-hdic-tsj
455           ===chise-hdic-syp
456           =chise-hdic-syp
457           ===chise-hdic-ktb
458           ===chise-hdic-ktb-seal
459           =chise-hdic-ktb
460           ==jis-x0208@1990
461           ==ucs-radicals@unicode
462           ==mj-0
463           ==mj-1
464           ==ucs-bmp-cjk@JP/hanazono
465           ==ucs-sip-ext-b@iso
466           ==ucs-sip@JP/hanazono
467           ==ucs-tip@JP/hanazono
468           ==ucs-bmp-itaiji-001
469           ==ucs-sip-itaiji-001
470           ==ucs-bmp-itaiji-002
471           ==ucs-sip-itaiji-002
472           ==ucs-bmp-itaiji-003
473           ==ucs-sip-itaiji-003
474           ==ucs-sip-itaiji-004
475           ==ucs-bmp-itaiji-005
476           ==ucs-sip-itaiji-005
477           ==ucs-bmp-itaiji-006
478           ==ucs-bmp-var-001
479           ==ucs-sip-var-001
480           ==ucs-bmp-var-002
481           ==ucs-sip-var-002
482           ==ucs-bmp-var-003
483           ==ucs-bmp-var-007
484           ==hanyo-denshi/ja
485           ==hanyo-denshi/jb
486           ==hanyo-denshi/jc
487           ==hanyo-denshi/jd
488           ==hanyo-denshi/ft
489           ==hanyo-denshi/ia
490           ==hanyo-denshi/ib
491           ==hanyo-denshi/hg
492           ==hanyo-denshi/ip
493           ==hanyo-denshi/jt
494           ==adobe-japan1-6
495           ==big5-cdp
496           ==big5-cdp-itaiji-001
497           ==cns11643-1
498           ==cns11643-2
499           ==ucs-bmp-cjk@gb
500           ==cns11643-3
501           ==cns11643-4
502           ==cns11643-5
503           ==cns11643-6
504           ==cns11643-7
505           ==ucs-sip@iso
506           ==jis-x0208@1983
507           ==jis-x0208@1978
508           ==jis-x0213-1@2000
509           ==jis-x0213-2
510           ==jis-x0212
511           ==ks-x1001
512           ==ruimoku-v6
513           ==gt-pj-k1
514           ==gt-pj-k2
515           ==hanyo-denshi/tk/mf-01
516           ==daikanwa
517           ==daijiten
518           ==cbeta
519           ==jef-china3
520           ==ucs-bmp-cjk-compat@JP
521           ==ucs-bmp-cjk-compat@gb
522           ===mj-0
523           ===mj-1
524           ===jis-x0208
525           ===jis-x0208@1990
526           ===big5-cdp
527           ===ucs-bmp-cjk@gb
528           ===adobe-japan1-6
529           ===cns11643-1
530           ===cns11643-2
531           ===cns11643-3
532           ===cns11643-4
533           ===cns11643-5
534           ===cns11643-6
535           ===cns11643-7
536           ;; ===hanyo-denshi/ja
537           ===hanyo-denshi/jb
538           ===hanyo-denshi/jc
539           ===hanyo-denshi/jd
540           ===hanyo-denshi/ft
541           ===hanyo-denshi/ia
542           ===hanyo-denshi/ib
543           ===hanyo-denshi/hg
544           ===hanyo-denshi/ip
545           ===hanyo-denshi/jt
546           ===jis-x0213-1
547           ===jis-x0213-1@2004
548           ===jis-x0213-2
549           ===jis-x0208@1983
550           ===jis-x0208@1978
551           ===jis-x0212
552           ===ks-x1001
553           ===daikanwa
554           ===ucs-sip-ext-b@iso
555           ===ucs-sip@iso
556           ===ruimoku-v6
557           ===daijiten
558           ===hng-jou ; 01
559           ===hng-keg ; 02
560           ===hng-dng ; 03
561           ===hng-mam ; 05
562           ===hng-drt ; 06
563           ===hng-kgk ; 07
564           ===hng-myz ; 08
565           ===hng-kda ; 09
566           ===hng-khi ; 10
567           ===hng-khm ; 11
568           ===hng-fhs ; 12
569           ===hng-hok ; 13
570           ===hng-kyd ; 14
571           ===hng-sok ; 15
572           ===hng-yhk ; 16
573           ===hng-kak ; 17
574           ===hng-kar ; 18
575           ===hng-kae ; 19
576           ===hng-sys ; 22
577           ===hng-tsu ; 24
578           ===hng-tzj ; 25
579           ===hng-hos ; 26
580           ===hng-kkh ; 27
581           ===hng-nak ; 28
582           ===hng-jhk ; 29
583           ===hng-hod ; 30
584           ===hng-gok ; 31
585           ===hng-ink ; 33
586           ===hng-nto ; 34
587           ===hng-nkm ; 36
588           ===hng-k24 ; 37
589           ===hng-ini ; 38
590           ===hng-nkk ; 39
591           ===hng-kcc ; 41
592           ===hng-kcj ; 42
593           ===hng-kbk ; 43
594           ===hng-sik ; 44
595           ===hng-skk ; 46
596           ===hng-kyu ; 47
597           ===hng-ksk ; 48
598           ===hng-wan ; 49
599           ===hng-okd ; 50
600           ===hng-wad ; 54
601           ===hng-kmi ; 55
602           ===hng-zkd ; 56
603           ===hng-doh ; 57
604           ===hng-jyu ; 58
605           ===hng-tzs ; 60
606           ===hng-sai ; 61
607           ===hng-kad ; 62
608           ===hng-kss ; 64
609           ===hng-kyo ; 66
610           ===hng-ykk ; 68
611           ===hng-saa ; 70
612           ===hng-sab ; 71
613           ===hng-wks ; 72
614           ===hng-wke ; 73
615           ===hng-smk ; 74
616           ===hng-sgs ; 77
617           ===hng-sts ; 78
618           ===hng-kkd ; 79
619           =shuowen-jiguge
620           =>shuowen-jiguge
621           ===shuowen-jiguge4
622           ===shuowen-jiguge5
623           ===shuowen-jiguge-A30
624           ===cbeta
625           ===jef-china3
626           ===ucs-bmp-cjk-compat@unicode
627           ;; ucs-sip
628           =>>big5-cdp
629           =>>jis-x0208
630           =>>jis-x0208@1990
631           =>>jis-x0213-1
632           =>>jis-x0213-1@2004
633           =>>jis-x0213-2
634           =>>ruimoku-v6
635           =>jis-x0208
636           =>jis-x0213-1
637           =>jis-x0213-2
638           =>mj-0
639           =>hanyo-denshi/tk/mf-01
640           =>big5-cdp
641           =>ruimoku-v6
642           =>big5-cdp@iwds-1
643           =>big5-cdp@component
644           =>big5-cdp@cognate
645           =>big5-cdp-itaiji-001
646           =>big5-cdp-itaiji-002
647           =>big5-cdp-itaiji-003
648           =>big5-cdp-itaiji-004
649           =>big5-cdp-itaiji-005
650           =>big5-cdp-itaiji-006
651           =>big5-cdp-var-001
652           =>ucs-bmp-itaiji-001
653           =>ucs-sip-itaiji-001
654           =>ucs-tip-itaiji-001
655           =>ucs-bmp-itaiji-002
656           =>ucs-sip-itaiji-002
657           =>ucs-bmp-itaiji-003
658           =>ucs-sip-itaiji-003
659           =>ucs-bmp-itaiji-004
660           =>ucs-sip-itaiji-004
661           =>ucs-bmp-itaiji-005
662           =>ucs-sip-itaiji-005
663           =>ucs-bmp-itaiji-006
664           =>ucs-sip-itaiji-006
665           =>ucs-bmp-itaiji-007
666           =>ucs-sip-itaiji-007
667           =>ucs-bmp-itaiji-008
668           =>ucs-sip-itaiji-008
669           =>ucs-bmp-itaiji-009
670           =>ucs-sip-itaiji-009
671           =>ucs-bmp-itaiji-010
672           =>ucs-bmp-itaiji-011
673           =>ucs-bmp-itaiji-012
674           =>ucs-sip-itaiji-012
675           =>ucs-bmp-itaiji-014
676           =>ucs-bmp-itaiji-016
677           =>ucs-bmp-itaiji-001@iwds-1
678           =>ucs-sip-itaiji-001@iwds-1
679           =>ucs-bmp-itaiji-002@iwds-1
680           =>ucs-sip-itaiji-002@iwds-1
681           =>ucs-bmp-itaiji-003@iwds-1
682           =>ucs-sip-itaiji-003@iwds-1
683           =>ucs-bmp-itaiji-006@iwds-1
684           =>ucs-bmp-var-001
685           =>daikanwa
686           ucs-bmp
687           ==>ucs-bmp-cjk@bucs
688           ==>ucs-sip@esu
689           =>ucs-bmp-cjk@unicode
690           =>ucs-bmp-cjk@cognate
691           =>ucs-bmp-cjk@component
692           =>ucs-sip@cognate
693           =>ucs-tip@cognate
694           =>ucs-sip@component
695           =>ucs-tip@component
696           =>ucs-bmp-cjk@iwds-1
697           =>ucs-bmp-cjk@iwds-1/normalized
698           =>ucs-sip@iwds-1
699           =>ucs-tip@iwds-1
700           =+>ucs-bmp-cjk@unicode
701           =+>ucs-bmp-cjk-compat@jis
702           =+>jis-x0213-2
703           =+>jis-x0213-1@2004
704           =>>ucs-bmp-cjk@unicode
705           =adobe-japan1-base
706           =>jis-x0208@1997
707           =>>hanyo-denshi/ft
708           =>>hanyo-denshi/ia
709           =>>hanyo-denshi/ib
710           =>>hanyo-denshi/jt
711           =>>adobe-japan1-6
712           =>>cns11643-1
713           =>>cns11643-2
714           =>>cns11643-3
715           =>>cns11643-4
716           =>>cns11643-6
717           =>>cbeta
718           =>>gt
719           =>cns11643-1
720           =>cns11643-5
721           =>cns11643-7
722           ==>daijiten
723           =>cbeta
724           =>zinbun-oracle
725           =+>adobe-japan1-6
726           =+>ucs-bmp-var-003
727           =+>ucs-tip-var-003
728           =+>jis-x0208@1978
729           =+>big5-cdp
730           )))
731
732 ;;; mule-charset.el ends here