23158
|
1 ;;; thai.el --- Support for Thai -*- coding: iso-2022-7bit; -*-
|
17052
|
2
|
|
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
|
18377
|
4 ;; Licensed to the Free Software Foundation.
|
17052
|
5
|
|
6 ;; Keywords: multilingual, Thai
|
|
7
|
|
8 ;; This file is part of GNU Emacs.
|
|
9
|
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
11 ;; it under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 ;; GNU General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
17071
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
17052
|
24
|
|
25 ;;; Commentary:
|
|
26
|
|
27 ;; For Thai, the character set TIS620 is supported.
|
|
28
|
|
29 ;;; Code:
|
|
30
|
|
31 (make-coding-system
|
18203
|
32 'thai-tis620 2 ?T
|
|
33 "8-bit encoding for ASCII (MSB=0) and Thai TIS620 (MSB=1)"
|
20739
|
34 '(ascii thai-tis620 nil nil
|
20156
|
35 nil ascii-eol)
|
20739
|
36 '((safe-charsets ascii thai-tis620)
|
26895
|
37 (post-read-conversion . thai-post-read-conversion)))
|
17098
|
38
|
18519
|
39 (define-coding-system-alias 'th-tis620 'thai-tis620)
|
|
40 (define-coding-system-alias 'tis620 'thai-tis620)
|
24461
|
41 (define-coding-system-alias 'tis-620 'thai-tis620)
|
17052
|
42
|
|
43 (set-language-info-alist
|
|
44 "Thai" '((tutorial . "TUTORIAL.th")
|
20739
|
45 (charset thai-tis620)
|
|
46 (coding-system thai-tis620)
|
|
47 (coding-priority thai-tis620)
|
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
diff
changeset
|
48 (nonascii-translation . thai-tis620)
|
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
diff
changeset
|
49 (input-method . "thai-kesmanee")
|
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
diff
changeset
|
50 (unibyte-display . thai-tis620)
|
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
diff
changeset
|
51 (features thai-util)
|
26895
|
52 (sample-text . "Thai (,T@RIRd7B(B) ,TJ0GQ1J04U1$0CQ1:(B, ,TJ0GQ1J04U10$h1P(B")
|
17841
|
53 (documentation . t)))
|
17052
|
54
|
26895
|
55
|
|
56 ;; Register a function to compose Thai characters.
|
|
57 (aset composition-function-table (make-char 'thai-tis620)
|
|
58 '(("\\c0\\c4\\|\\c0\\(\\c2\\|\\c3\\)\\c4?" . thai-composition-function)))
|
|
59
|
17052
|
60 ;;; thai.el ends here
|