*** empty log message ***
[m17n/m17n-db.git] / xfont.fst
1 ;; xfont.fst -- Fontset using only X fonts
2 ;; Copyright (C) 2003, 2004, 2006, 2010  AIST (H15PRO112)
3 ;; See the end for copying conditions.
4
5 ;; The file format is this:
6 ;;      (SCRIPT (LANGAUGE (FONT-SPEC-LIST [LAYOUTER]) ...) ...) ...
7 ;;      (CHARSET (FONT-SPEC-LIST [LAYOUTER]) ...) ...
8 ;;      (nil (FONT-SPEC-LIST [LAYOUTER]) ...) ...
9 ;; See FORMAT/Fontset.txt for the detail.
10
11 ;;; <li> xfont.fst
12 ;;;
13 ;;; Fontset using only X fonts.
14
15 (latin
16  (vi
17   ((viscii1.1-1)))
18  (nil
19   ((iso8859-1))
20   ((iso8859-2))
21   ((iso8859-15))
22   ((iso10646-1))
23   ((iso8859-3))
24   ((iso8859-4))
25   ((iso8859-5))
26   ((iso8859-9))
27   ((iso8859-10))
28   ((iso8859-13))
29   ((iso8859-14))))
30 (greek
31  (nil
32   ((iso8859-7))))
33 (cyrillic
34  (nil
35   ((iso8859-5))
36   ((microsoft-cp1251))))
37 (hebrew
38  (nil
39   ((iso8859-8))))
40 (arabic
41  (nil
42   ((iso10646-1) arabic)))
43 (thai
44  (nil
45   ((tis620.2529-1) thai-tis620)
46   ((tis620.2533-0) thai-tis620)
47   ((iso8859-11))))
48 (han
49  (zh
50   ((gb2312.1980-0))
51   ((big5.eten-0))
52   ((big5-1))
53   ((gbk-0)))
54  (ja
55   ((jisx0208.1983-0))
56   ((jisx0212.1990-0)))
57  (ko
58   ((ksc5601.1987-0))))
59 (hiragana
60  (nil
61   ((jisx0208.1983-0))
62   ((gb2312.1980-0))
63   ((ksc5601.1987-0))))
64 (katakana
65  (nil
66   ((jisx0208.1983-0))
67   ((jisx0201.1976-0))
68   ((gb2312.1980-0))
69   ((ksc5601.1987-0))))
70 (hangul
71  (nil
72   ((ksc5601.1987-0))))
73 (nil
74  ((iso10646-1)))
75
76 ;; Copyright (C) 2003, 2004, 2007, 2010
77 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
78 ;;   Registration Number H15PRO112
79
80 ;; This file is part of the m17n database; a sub-part of the m17n
81 ;; library.
82
83 ;; The m17n library is free software; you can redistribute it and/or
84 ;; modify it under the terms of the GNU Lesser General Public License
85 ;; as published by the Free Software Foundation; either version 2.1 of
86 ;; the License, or (at your option) any later version.
87
88 ;; The m17n library is distributed in the hope that it will be useful,
89 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
90 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
91 ;; Lesser General Public License for more details.
92
93 ;; You should have received a copy of the GNU Lesser General Public
94 ;; License along with the m17n library; if not, write to the Free
95 ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
96 ;; Boston, MA 02110-1301, USA.
97
98 ;; Local Variables:
99 ;; mode: lisp
100 ;; End: