]> code.delx.au - gnu-emacs/blob - lisp/language/thai.el
Fix the format of the first line.
[gnu-emacs] / lisp / language / thai.el
1 ;;; thai.el --- Support for Thai
2
3 ;; Copyright (C) 1995 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
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
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.
24
25 ;;; Commentary:
26
27 ;; For Thai, the character set TIS620 is supported.
28
29 ;;; Code:
30
31 (make-coding-system
32 'th-tis620 2 ?T
33 "Coding-system used for ASCII(MSB=0) & TIS620(MSB=1)."
34 '((ascii t) (thai-tis620 t) nil nil
35 nil ascii-eol))
36 (put 'th-tis620 'post-read-conversion 'thai-post-read-conversion)
37 (put 'th-tis620 'pre-write-conversion 'thai-pre-write-conversion)
38
39 (define-coding-system-alias 'th-tis620 'tis620)
40
41 (register-input-method
42 "Thai" '("quail-thai" quail-use-package "quail/thai"))
43
44 (defun setup-thai-environment ()
45 (setq coding-category-iso-8-1 'th-tis620)
46
47 (set-coding-priority
48 '(coding-category-iso-7
49 coding-category-iso-8-1))
50
51 (setq-default buffer-file-coding-system 'th-tis620)
52
53 (setq default-input-method '("Thai" . "quail-thai"))
54 )
55
56 (set-language-info-alist
57 "Thai" '((tutorial . "TUTORIAL.th")
58 (setup-function . setup-thai-environment)
59 (charset . (thai-tis620))
60 (coding-system . (th-tis620))
61 (documentation . t)
62 (sample-text . "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")))
63
64 ;;; thai.el ends here