]> code.delx.au - gnu-emacs/blob - lisp/language/thai.el
*** empty log message ***
[gnu-emacs] / lisp / language / thai.el
1 ;;; thai.el --- support for Thai -*- coding: iso-2022-7bit; no-byte-compile: t -*-
2
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007
5 ;; National Institute of Advanced Industrial Science and Technology (AIST)
6 ;; Registration Number H13PRO009
7 ;; Copyright (C) 2005
8 ;; National Institute of Advanced Industrial Science and Technology (AIST)
9 ;; Registration Number H14PRO021
10 ;; Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
11 ;; 2006, 2007 Free Software Foundation, Inc.
12
13 ;; Keywords: multilingual, Thai, i18n
14
15 ;; This file is part of GNU Emacs.
16
17 ;; GNU Emacs is free software; you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by
19 ;; the Free Software Foundation; either version 3, or (at your option)
20 ;; any later version.
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
28 ;; along with GNU Emacs; see the file COPYING. If not, write to the
29 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
30 ;; Boston, MA 02110-1301, USA.
31
32 ;;; Commentary:
33
34 ;; For Thai, the character set TIS620 is supported.
35
36 ;;; Code:
37
38 (define-coding-system 'thai-tis620
39 "8-bit encoding for ASCII (MSB=0) and Thai TIS620 (MSB=1)."
40 :coding-type 'charset
41 :mnemonic ?T
42 :charset-list '(tis620-2533))
43
44 (define-coding-system-alias 'th-tis620 'thai-tis620)
45 (define-coding-system-alias 'tis620 'thai-tis620)
46 (define-coding-system-alias 'tis-620 'thai-tis620)
47
48 (set-language-info-alist
49 "Thai" '((tutorial . "TUTORIAL.th")
50 (charset thai-tis620)
51 (coding-system thai-tis620 iso-8859-11 cp874)
52 (coding-priority thai-tis620)
53 (nonascii-translation . tis620-2533)
54 (input-method . "thai-kesmanee")
55 (unibyte-display . thai-tis620)
56 (features thai-util)
57 (setup-function . setup-thai-language-environment-internal)
58 (exit-function . exit-thai-language-environment-internal)
59 (sample-text
60 . (thai-compose-string
61 (copy-sequence "Thai (\e,T@RIRd7B\e(B) \e,TJGQJ4U$CQ:\e(B, \e,TJGQJ4U$hP\e(B")))
62 (documentation . t)))
63
64 (define-coding-system 'cp874
65 "DOS codepage 874 (Thai)"
66 :coding-type 'charset
67 :mnemonic ?D
68 :charset-list '(cp874)
69 :mime-charset 'cp874)
70 (define-coding-system-alias 'ibm874 'cp874)
71
72 (define-coding-system 'iso-8859-11
73 "ISO/IEC 8859/11 (Latin/Thai)
74 This is the same as `thai-tis620' with the addition of no-break-space."
75 :coding-type 'charset
76 :mnemonic ?*
77 :mime-charset 'iso-8859-11 ; not actually registered as of 2002-05-24
78 :charset-list '(iso-8859-11))
79
80 ;; For automatic composition.
81 (let ((chars "\e,TQTUVWXYZghijklmn\e(B"))
82 (dotimes (i (length chars))
83 (aset composition-function-table (aref chars i)
84 'thai-composition-function)))
85
86 (provide 'thai)
87
88 ;;; arch-tag: c7eb0e91-4db0-4619-81f8-8762e7d51e15
89 ;;; thai.el ends here