(default-coded-charset-priority-list): Add `=ucs-tip-var-004'.
[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 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-bmp-cjk@JP
285           =ucs-bmp-cjk@JP/hanazono
286           =mj-0
287           =mj-1
288           =ucs-bmp-cjk@gb
289           =jis-x0208@1983
290           chinese-gb2312
291           =jis-x0208-1990
292           japanese-jisx0208-1978
293           =jis-x0212
294           chinese-cns11643-1
295           chinese-cns11643-2
296           chinese-cns11643-3
297           chinese-cns11643-4
298           chinese-cns11643-5
299           chinese-cns11643-6
300           chinese-cns11643-7
301           =adobe-japan1-0
302           =adobe-japan1-1
303           =adobe-japan1-2
304           =adobe-japan1-3
305           =adobe-japan1-4
306           =adobe-japan1-5
307           =adobe-japan1-6
308           =big5-cdp
309           =hanyo-denshi/ja
310           =hanyo-denshi/jb
311           =hanyo-denshi/jc
312           =hanyo-denshi/jd
313           =hanyo-denshi/ft
314           =hanyo-denshi/ia
315           =hanyo-denshi/ib
316           =hanyo-denshi/hg
317           =hanyo-denshi/ip
318           =hanyo-denshi/jt
319           =hanyo-denshi/ks/mf
320           =hanyo-denshi/tk/mf-01
321           =gt-pj-2
322           =gt-pj-3
323           =gt-pj-4
324           =gt-pj-5
325           =gt-pj-6
326           =gt-pj-7
327           =gt-pj-8
328           =gt-pj-9
329           =gt-pj-10
330           =gt-pj-11
331           =gt-pj-k1
332           =gt-pj-k2
333           chinese-big5-eten-a
334           chinese-big5-eten-b
335           chinese-big5
336           =jis-x0213-1-2000
337           =jis-x0213-2-2000
338           ;; chinese-gb12345
339           =gt-pj-1
340           =ucs-bmp-cjk
341           =ucs-sip-ext-b
342           =ucs-tip
343           =ruimoku-v6
344           =zinbun-oracle
345           =hanziku-1
346           =hanziku-2
347           =hanziku-3
348           =hanziku-4
349           =hanziku-5
350           =hanziku-6
351           =hanziku-7
352           =hanziku-8
353           =hanziku-9
354           =hanziku-10
355           =hanziku-11
356           =hanziku-12
357           =ucs-sip-ext-b@iso
358           =ucs-sip@iso
359           =daikanwa@rev2
360           ideograph-daikanwa
361           korean-ksc5601
362           katakana-jisx0201
363           hebrew-iso8859-8
364           latin-viscii
365           latin-viscii-lower
366           latin-viscii-upper
367           ipa
368           lao
369           ethiopic-ucs
370           ethiopic
371           arabic-digit
372           arabic-1-column
373           arabic-2-column
374           arabic-iso8859-6
375           chinese-big5-1
376           chinese-big5-2
377           ;; =zihai-17xx
378           =ucs-bmp-var-001
379           =ucs-sip-var-001
380           =ucs-tip-var-001
381           =ucs-bmp-var-002
382           =ucs-sip-var-002
383           =ucs-tip-var-002
384           =ucs-bmp-var-003
385           =ucs-sip-var-003
386           =ucs-tip-var-003
387           =ucs-bmp-var-004
388           =ucs-sip-var-004
389           =ucs-tip-var-004
390           =ucs-bmp-var-005
391           =ucs-sip-var-005
392           =ucs-bmp-var-006
393           =ucs-sip-var-006
394           =ucs-bmp-var-007
395           =ucs-bmp-var-008
396           =ucs-bmp-var-010
397           =ucs-bmp-itaiji-001
398           =ucs-sip-itaiji-001
399           =ucs-tip-itaiji-001
400           =ucs-bmp-itaiji-002
401           =ucs-sip-itaiji-002
402           =ucs-bmp-itaiji-003
403           =ucs-sip-itaiji-003
404           =ucs-bmp-itaiji-004
405           =ucs-sip-itaiji-004
406           =ucs-bmp-itaiji-005
407           =ucs-sip-itaiji-005
408           =ucs-bmp-itaiji-006
409           =ucs-sip-itaiji-006
410           =ucs-bmp-itaiji-007
411           =ucs-sip-itaiji-007
412           =ucs-bmp-itaiji-008
413           =ucs-sip-itaiji-008
414           =ucs-bmp-itaiji-009
415           =ucs-bmp-itaiji-010
416           =ucs-bmp-itaiji-011
417           =ucs-sip-itaiji-011
418           =ucs-bmp-itaiji-012
419           =ucs-bmp-itaiji-084
420           =big5-cdp-itaiji-001
421           =big5-cdp-itaiji-002
422           =big5-cdp-itaiji-003
423           =big5-cdp-itaiji-004
424           =big5-cdp-itaiji-005
425           =big5-cdp-var-001
426           =big5-cdp-var-002
427           =big5-cdp-var-003
428           =big5-cdp-var-004
429           =big5-cdp-var-005
430           =big5-cdp-var-007
431           =big5-cdp-var-010
432           =ucs-bmp-cjk-compat
433           =ucs-bmp-cjk-compat@unicode
434           =ucs-sip@JP/hanazono
435           =ucs-tip@JP/hanazono
436           =ucs-sip@gb
437           =daijiten
438           =cbeta
439           =jef-china3
440           chinese-isoir165
441           ==jis-x0208@1990
442           ==ucs-radicals@unicode
443           ==ucs-bmp-cjk@JP/hanazono
444           ==mj-0
445           ==mj-1
446           ==ucs-bmp-cjk@gb
447           ==ucs-sip-ext-b@iso
448           ==ucs-sip@JP/hanazono
449           ==ucs-tip@JP/hanazono
450           ==ucs-bmp-itaiji-001
451           ==ucs-sip-itaiji-001
452           ==ucs-bmp-itaiji-002
453           ==ucs-sip-itaiji-002
454           ==ucs-bmp-itaiji-003
455           ==ucs-sip-itaiji-003
456           ==ucs-bmp-itaiji-005
457           ==ucs-bmp-itaiji-006
458           ==ucs-bmp-var-001
459           ==ucs-bmp-var-002
460           ==ucs-sip-var-002
461           ==hanyo-denshi/ja
462           ==hanyo-denshi/jb
463           ==hanyo-denshi/jc
464           ==hanyo-denshi/jd
465           ==hanyo-denshi/ft
466           ==hanyo-denshi/ia
467           ==hanyo-denshi/ib
468           ==hanyo-denshi/hg
469           ==hanyo-denshi/ip
470           ==hanyo-denshi/jt
471           ==adobe-japan1-6
472           ==big5-cdp
473           ==big5-cdp-itaiji-001
474           ==cns11643-1
475           ==cns11643-2
476           ==cns11643-3
477           ==cns11643-4
478           ==cns11643-5
479           ==cns11643-6
480           ==cns11643-7
481           ==ucs-sip@iso
482           ==jis-x0208@1983
483           ==jis-x0208@1978
484           ==jis-x0213-1@2000
485           ==jis-x0213-2
486           ==jis-x0212
487           ==ks-x1001
488           ==ruimoku-v6
489           ==gt-pj-k1
490           ==gt-pj-k2
491           ==hanyo-denshi/tk/mf-01
492           ==daikanwa
493           ==daijiten
494           ==cbeta
495           ==jef-china3
496           ==ucs-bmp-cjk-compat@JP
497           ==ucs-bmp-cjk-compat@gb
498           ===mj-0
499           ===mj-1
500           ===jis-x0208
501           ===jis-x0208@1990
502           ===big5-cdp
503           ===ucs-bmp-cjk@gb
504           ===adobe-japan1-6
505           ===cns11643-1
506           ===cns11643-2
507           ===cns11643-3
508           ===cns11643-4
509           ===cns11643-5
510           ===cns11643-6
511           ===cns11643-7
512           ;; ===hanyo-denshi/ja
513           ===hanyo-denshi/jb
514           ===hanyo-denshi/jc
515           ===hanyo-denshi/jd
516           ===hanyo-denshi/ft
517           ===hanyo-denshi/ia
518           ===hanyo-denshi/ib
519           ===hanyo-denshi/hg
520           ===hanyo-denshi/ip
521           ===hanyo-denshi/jt
522           ===jis-x0213-1
523           ===jis-x0213-1@2004
524           ===jis-x0213-2
525           ===jis-x0208@1983
526           ===jis-x0208@1978
527           ===jis-x0212
528           ===ks-x1001
529           ===daikanwa
530           ===ucs-sip-ext-b@iso
531           ===ucs-sip@iso
532           ===ruimoku-v6
533           ===daijiten
534           ===hng-jou ; 01
535           ===hng-keg ; 02
536           ===hng-dng ; 03
537           ===hng-mam ; 05
538           ===hng-drt ; 06
539           ===hng-kgk ; 07
540           ===hng-myz ; 08
541           ===hng-kda ; 09
542           ===hng-khi ; 10
543           ===hng-khm ; 11
544           ===hng-fhs ; 12
545           ===hng-hok ; 13
546           ===hng-kyd ; 14
547           ===hng-sok ; 15
548           ===hng-yhk ; 16
549           ===hng-kak ; 17
550           ===hng-kar ; 18
551           ===hng-kae ; 19
552           ===hng-sys ; 22
553           ===hng-tsu ; 24
554           ===hng-tzj ; 25
555           ===hng-hos ; 26
556           ===hng-kkh ; 27
557           ===hng-nak ; 28
558           ===hng-jhk ; 29
559           ===hng-hod ; 30
560           ===hng-gok ; 31
561           ===hng-ink ; 33
562           ===hng-nto ; 34
563           ===hng-nkm ; 36
564           ===hng-k24 ; 37
565           ===hng-ini ; 38
566           ===hng-nkk ; 39
567           ===hng-kcc ; 41
568           ===hng-kcj ; 42
569           ===hng-kbk ; 43
570           ===hng-sik ; 44
571           ===hng-skk ; 46
572           ===hng-kyu ; 47
573           ===hng-ksk ; 48
574           ===hng-wan ; 49
575           ===hng-okd ; 50
576           ===hng-wad ; 54
577           ===hng-kmi ; 55
578           ===hng-zkd ; 56
579           ===hng-doh ; 57
580           ===hng-jyu ; 58
581           ===hng-tzs ; 60
582           ===hng-sai ; 61
583           ===hng-kad ; 62
584           ===hng-kss ; 64
585           ===hng-kyo ; 66
586           ===hng-ykk ; 68
587           ===hng-saa ; 70
588           ===hng-sab ; 71
589           ===hng-wks ; 72
590           ===hng-wke ; 73
591           ===hng-smk ; 74
592           ===hng-sgs ; 77
593           ===hng-sts ; 78
594           =shuowen-jiguge
595           ===shuowen-jiguge4
596           ===shuowen-jiguge5
597           ===cbeta
598           ===jef-china3
599           ===ucs-bmp-cjk-compat@unicode
600           ;; ucs-sip
601           =>>big5-cdp
602           =>>jis-x0208
603           =>>jis-x0208@1990
604           =>>jis-x0213-1
605           =>>jis-x0213-1@2004
606           =>>jis-x0213-2
607           =>jis-x0208
608           =>jis-x0213-1
609           =>jis-x0213-2
610           =>mj-0
611           =>big5-cdp
612           =>ruimoku-v6
613           =>big5-cdp@iwds-1
614           =>big5-cdp@component
615           =>big5-cdp@cognate
616           =>big5-cdp-itaiji-001
617           =>big5-cdp-itaiji-002
618           =>big5-cdp-itaiji-003
619           =>big5-cdp-itaiji-004
620           =>big5-cdp-var-001
621           =>ucs-bmp-itaiji-001
622           =>ucs-sip-itaiji-001
623           =>ucs-tip-itaiji-001
624           =>ucs-bmp-itaiji-002
625           =>ucs-sip-itaiji-002
626           =>ucs-bmp-itaiji-003
627           =>ucs-sip-itaiji-003
628           =>ucs-bmp-itaiji-004
629           =>ucs-sip-itaiji-004
630           =>ucs-bmp-itaiji-005
631           =>ucs-sip-itaiji-005
632           =>ucs-bmp-itaiji-006
633           =>ucs-sip-itaiji-006
634           =>ucs-bmp-itaiji-007
635           =>ucs-sip-itaiji-007
636           =>ucs-bmp-itaiji-008
637           =>ucs-bmp-itaiji-009
638           =>ucs-bmp-itaiji-010
639           =>ucs-bmp-itaiji-011
640           =>ucs-bmp-itaiji-001@iwds-1
641           =>ucs-sip-itaiji-001@iwds-1
642           =>ucs-bmp-itaiji-002@iwds-1
643           =>ucs-sip-itaiji-002@iwds-1
644           =>ucs-bmp-itaiji-003@iwds-1
645           =>daikanwa
646           ucs-bmp
647           ==>ucs-bmp-cjk@bucs
648           ==>ucs-sip@esu
649           =>ucs-bmp-cjk@unicode
650           =>ucs-bmp-cjk@cognate
651           =>ucs-bmp-cjk@component
652           =>ucs-sip@cognate
653           =>ucs-tip@cognate
654           =>ucs-sip@component
655           =>ucs-tip@component
656           =>ucs-bmp-cjk@iwds-1
657           =>ucs-bmp-cjk@iwds-1/normalized
658           =>ucs-sip@iwds-1
659           =+>ucs-bmp-cjk@unicode
660           =+>ucs-bmp-cjk-compat@jis
661           =+>jis-x0213-2
662           =+>jis-x0213-1@2004
663           =>>ucs-bmp-cjk@unicode
664           =adobe-japan1-base
665           =>jis-x0208@1997
666           =>>hanyo-denshi/ft
667           =>>hanyo-denshi/ia
668           =>>hanyo-denshi/ib
669           =>>hanyo-denshi/jt
670           =>>adobe-japan1-6
671           =>>cns11643-1
672           =>>cns11643-2
673           =>>cns11643-3
674           =>>cns11643-4
675           =>>cns11643-6
676           =>>cbeta
677           =>>gt
678           =>cns11643-1
679           =>cns11643-7
680           ==>daijiten
681           =>cbeta
682           =>zinbun-oracle
683           =+>adobe-japan1-6
684           =+>ucs-bmp-var-003
685           =+>ucs-tip-var-003
686           =+>jis-x0208@1978
687           =+>big5-cdp
688           )))
689
690 ;;; mule-charset.el ends here