353
|
1 ;;; thai-xtis-chars.el --- definition of the Thai XTIS charset.
|
|
2
|
|
3 ;; Copyright (C) 1999 Electrotechnical Laboratory, JAPAN.
|
|
4 ;; Licensed to the Free Software Foundation.
|
|
5
|
|
6 ;; Author: MORIOKA Tomohiko <tomo@etl.go.jp>
|
|
7
|
|
8 ;; Keywords: mule, multilingual, Thai, XTIS
|
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
24 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
25 ;; 02111-1307, USA.
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;; For Thai, the pre-composed character set proposed by
|
|
30 ;; Virach Sornlertlamvanich <virach@links.nectec.or.th> is supported.
|
|
31
|
|
32 ;;; Code:
|
|
33
|
|
34 (make-charset 'thai-xtis "Precomposed Thai (XTIS by Virach)."
|
|
35 '(registry "xtis-0"
|
|
36 dimension 2
|
|
37 columns 1
|
|
38 chars 94
|
|
39 final ??
|
|
40 graphic 0))
|
|
41
|
|
42 (define-category ?x "Precomposed Thai character.")
|
|
43 (modify-category-entry 'thai-xtis ?x)
|
|
44
|
|
45 ;; thai-xtis-chars.el ends here.
|