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