Move definition of coded-charset `ethiopic' from mule/ethiopic.el.
[chise/xemacs-chise.git] / lisp / mule / mule-conf.el
1 ;;; mule-conf.el --- configure multilingual environment
2
3 ;; Copyright (C) 1995,1999 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
5 ;; Copyright (C) 1997,1999 MORIOKA Tomohiko
6
7 ;; Keywords: mule, multilingual, character set, coding system
8
9 ;; This file is part of XEmacs.
10
11 ;; XEmacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; XEmacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with XEmacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Code:
27
28 ;; Lao script.
29 ;; ISO10646's 0x0E80..0x0EDF are mapped to 0x20..0x7F.
30 (make-charset 'lao "Lao script"
31               '(registry "MuleLao-1"
32                 dimension 1
33                 chars 94
34                 final ?1
35                 graphic 1))
36
37 ;; IPA (International Phonetic Alphabet)
38 (make-charset 'ipa "International Phonetic Alphabet"
39               '(registry "MuleIPA"
40                 dimension 1
41                 chars 96
42                 final ?0
43                 graphic 1))
44
45 ;; Ethiopic
46 (make-charset 'ethiopic "Ethiopic"
47               '(registry "Ethio"
48                 dimension 2
49                 chars 94
50                 final ?3
51                 graphic 0
52                 ))
53
54 ;;; mule-conf.el ends here