Doc fixes.
[bpt/emacs.git] / lisp / language / thai.el
CommitLineData
60370d40 1;;; thai.el --- support for Thai -*- coding: iso-2022-7bit; -*-
4ed46869 2
4ed46869 3;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
fa526c4a 4;; Licensed to the Free Software Foundation.
4ed46869
KH
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
369314dc
KH
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.
4ed46869
KH
24
25;;; Commentary:
26
27;; For Thai, the character set TIS620 is supported.
28
29;;; Code:
30
e1915ab3
KH
31(define-coding-system 'thai-tis620
32 "8-bit encoding for ASCII (MSB=0) and Thai TIS620 (MSB=1)."
33 :coding-type 'charset
34 :mnemonic ?T
35 :charset-list '(tis620-2533))
a7f2c216 36
2e21aa27
RS
37(define-coding-system-alias 'th-tis620 'thai-tis620)
38(define-coding-system-alias 'tis620 'thai-tis620)
5d22a4c9 39(define-coding-system-alias 'tis-620 'thai-tis620)
4ed46869 40
4ed46869
KH
41(set-language-info-alist
42 "Thai" '((tutorial . "TUTORIAL.th")
a79a3c79
KH
43 (charset thai-tis620)
44 (coding-system thai-tis620)
45 (coding-priority thai-tis620)
e1915ab3 46 (nonascii-translation . tis620-2533)
a564ccf9
KH
47 (input-method . "thai-kesmanee")
48 (unibyte-display . thai-tis620)
49 (features thai-util)
e2a20aa7
KH
50 (sample-text
51 . (thai-compose-string
52 (copy-sequence "Thai (\e,T@RIRd7B\e(B) \e,TJ\e0GQ\e1J\e04U\e1$\e0CQ\e1:\e(B, \e,TJ\e0GQ\e1J\e04U\e1\e0$h\e1P\e(B")))
78eee0ed 53 (documentation . t)))
4ed46869 54
c27737aa
KH
55
56;; Register a function to compose Thai characters.
e1915ab3
KH
57(set-char-table-range composition-function-table
58 '(#x0E00 . #x0E7F)
59 '(("\\c0\\c4\\|\\c0\\(\\c2\\|\\c3\\)\\c4?"
60 . thai-composition-function)))
c27737aa 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
41da80b1
DL
70(provide 'thai)
71
4ed46869 72;;; thai.el ends here