Add 2010 to copyright years.
[bpt/emacs.git] / lisp / language / thai.el
CommitLineData
0a10297a 1;;; thai.el --- support for Thai -*- coding: iso-2022-7bit; no-byte-compile: t -*-
4ed46869 2
7976eda0 3;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
114f9c96 4;; 2005, 2006, 2007, 2008, 2009, 2010
8f924df7
KH
5;; National Institute of Advanced Industrial Science and Technology (AIST)
6;; Registration Number H13PRO009
db328182
KH
7;; Copyright (C) 2005
8;; National Institute of Advanced Industrial Science and Technology (AIST)
9;; Registration Number H14PRO021
d4877ac1 10;; Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
114f9c96 11;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4ed46869 12
2d244aeb 13;; Keywords: multilingual, Thai, i18n
4ed46869
KH
14
15;; This file is part of GNU Emacs.
16
4936186e 17;; GNU Emacs is free software: you can redistribute it and/or modify
4ed46869 18;; it under the terms of the GNU General Public License as published by
4936186e
GM
19;; the Free Software Foundation, either version 3 of the License, or
20;; (at your option) any later version.
4ed46869
KH
21
22;; GNU Emacs is distributed in the hope that it will be useful,
23;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25;; GNU General Public License for more details.
26
27;; You should have received a copy of the GNU General Public License
4936186e 28;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
4ed46869
KH
29
30;;; Commentary:
31
32;; For Thai, the character set TIS620 is supported.
33
34;;; Code:
35
e1915ab3
KH
36(define-coding-system 'thai-tis620
37 "8-bit encoding for ASCII (MSB=0) and Thai TIS620 (MSB=1)."
38 :coding-type 'charset
39 :mnemonic ?T
40 :charset-list '(tis620-2533))
a7f2c216 41
2e21aa27
RS
42(define-coding-system-alias 'th-tis620 'thai-tis620)
43(define-coding-system-alias 'tis620 'thai-tis620)
5d22a4c9 44(define-coding-system-alias 'tis-620 'thai-tis620)
4ed46869 45
4ed46869
KH
46(set-language-info-alist
47 "Thai" '((tutorial . "TUTORIAL.th")
a79a3c79 48 (charset thai-tis620)
2d13c267 49 (coding-system thai-tis620 iso-8859-11 cp874)
a79a3c79 50 (coding-priority thai-tis620)
e1915ab3 51 (nonascii-translation . tis620-2533)
a564ccf9
KH
52 (input-method . "thai-kesmanee")
53 (unibyte-display . thai-tis620)
54 (features thai-util)
44053845
KH
55 (setup-function . setup-thai-language-environment-internal)
56 (exit-function . exit-thai-language-environment-internal)
a1506d29 57 (sample-text
e2a20aa7 58 . (thai-compose-string
1bac4db5 59 (copy-sequence "Thai (\e,T@RIRd7B\e(B) \e,TJGQJ4U$CQ:\e(B, \e,TJGQJ4U$hP\e(B")))
78eee0ed 60 (documentation . t)))
4ed46869 61
10c7550e
DL
62(define-coding-system 'cp874
63 "DOS codepage 874 (Thai)"
64 :coding-type 'charset
65 :mnemonic ?D
66 :charset-list '(cp874)
67 :mime-charset 'cp874)
68(define-coding-system-alias 'ibm874 'cp874)
69
2d244aeb
DL
70(define-coding-system 'iso-8859-11
71 "ISO/IEC 8859/11 (Latin/Thai)
72This is the same as `thai-tis620' with the addition of no-break-space."
73 :coding-type 'charset
74 :mnemonic ?*
75 :mime-charset 'iso-8859-11 ; not actually registered as of 2002-05-24
76 :charset-list '(iso-8859-11))
77
1662e139 78;; For automatic composition.
4699a15a
KH
79(let ((chars "\e,TQTUVWXYZghijklmn\e(B")
80 (elt '(["[\e,T!\e(B-\e,TO\e(B].[\e,Thijkl\e(B]?\e,TS\e(B?" 1 thai-composition-function]
81 [nil 0 thai-composition-function])))
1662e139 82 (dotimes (i (length chars))
4699a15a
KH
83 (aset composition-function-table (aref chars i) elt)))
84(aset composition-function-table ?\e,TS\e(B '(["[\e,T!\e(B-\e,TO\e(B]." 1 thai-composition-function]))
c27737aa 85
41da80b1
DL
86(provide 'thai)
87
cbee283d 88;; arch-tag: c7eb0e91-4db0-4619-81f8-8762e7d51e15
4ed46869 89;;; thai.el ends here