Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-61
[bpt/emacs.git] / lisp / language / thai.el
1 ;;; thai.el --- support for Thai -*- coding: iso-2022-7bit; no-byte-compile: t -*-
2
3 ;; Copyright (C) 1995, 1997, 1998, 1999, 2000, 2002, 2005
4 ;; National Institute of Advanced Industrial Science and Technology (AIST)
5 ;; Registration Number H13PRO009
6 ;; Copyright (C) 2005
7 ;; National Institute of Advanced Industrial Science and Technology (AIST)
8 ;; Registration Number H14PRO021
9 ;; Copyright (C) 1997, 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
10
11 ;; Keywords: multilingual, Thai, i18n
12
13 ;; This file is part of GNU Emacs.
14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; any later version.
19
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
29
30 ;;; Commentary:
31
32 ;; For Thai, the character set TIS620 is supported.
33
34 ;;; Code:
35
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))
41
42 (define-coding-system-alias 'th-tis620 'thai-tis620)
43 (define-coding-system-alias 'tis620 'thai-tis620)
44 (define-coding-system-alias 'tis-620 'thai-tis620)
45
46 (set-language-info-alist
47 "Thai" '((tutorial . "TUTORIAL.th")
48 (charset thai-tis620)
49 (coding-system thai-tis620 iso-8859-11 cp874)
50 (coding-priority thai-tis620)
51 (nonascii-translation . tis620-2533)
52 (input-method . "thai-kesmanee")
53 (unibyte-display . thai-tis620)
54 (features thai-util)
55 (setup-function . setup-thai-language-environment-internal)
56 (exit-function . exit-thai-language-environment-internal)
57 (sample-text
58 . (thai-compose-string
59 (copy-sequence "Thai (\e,T@RIRd7B\e(B) \e,TJGQJ4U$CQ:\e(B, \e,TJGQJ4U$hP\e(B")))
60 (documentation . t)))
61
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
70 (define-coding-system 'iso-8859-11
71 "ISO/IEC 8859/11 (Latin/Thai)
72 This 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
78 ;; For automatic composition.
79 (let ((chars "\e,TQTUVWXYZghijklmn\e(B"))
80 (dotimes (i (length chars))
81 (aset composition-function-table (aref chars i)
82 'thai-composition-function)))
83
84 (provide 'thai)
85
86 ;;; arch-tag: c7eb0e91-4db0-4619-81f8-8762e7d51e15
87 ;;; thai.el ends here