Mercurial > emacs
annotate lisp/language/thai.el @ 17941:2465a6a42a60
(Info-suffix-list): Accept -info as suffix;
also accept a subdir with a file called `index'.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 24 May 1997 21:27:29 +0000 |
parents | 084d922fcd78 |
children | 73869115ae0a |
rev | line source |
---|---|
17052 | 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 | |
17071 | 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. | |
17052 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; For Thai, the character set TIS620 is supported. | |
28 | |
29 ;;; Code: | |
30 | |
31 (make-coding-system | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
32 'th-tis620 2 ?T |
17052 | 33 "Coding-system used for ASCII(MSB=0) & TIS620(MSB=1)." |
34 '((ascii t) (thai-tis620 t) nil nil | |
35 nil ascii-eol)) | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
36 (put 'th-tis620 'post-read-conversion 'thai-post-read-conversion) |
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
37 (put 'th-tis620 'pre-write-conversion 'thai-pre-write-conversion) |
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
38 |
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
39 (define-coding-system-alias 'th-tis620 'tis620) |
17052 | 40 |
41 (register-input-method | |
42 "Thai" '("quail-thai" quail-use-package "quail/thai")) | |
43 | |
44 (defun setup-thai-environment () | |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
45 "Setup multilingual environment (MULE) for Thai." |
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
46 (interactive) |
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
47 (setup-english-environment) |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
48 (setq coding-category-iso-8-1 'th-tis620) |
17052 | 49 |
50 (set-coding-priority | |
51 '(coding-category-iso-7 | |
52 coding-category-iso-8-1)) | |
53 | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
54 (setq-default buffer-file-coding-system 'th-tis620) |
17052 | 55 |
56 (setq default-input-method '("Thai" . "quail-thai")) | |
57 ) | |
58 | |
59 (set-language-info-alist | |
60 "Thai" '((tutorial . "TUTORIAL.th") | |
61 (setup-function . setup-thai-environment) | |
62 (charset . (thai-tis620)) | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
63 (coding-system . (th-tis620)) |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
64 (sample-text . "Thai (,T@RIRd7B(B) ,TJ0GQ1J04U1$0CQ1:(B, ,TJ0GQ1J04U10$h1P(B") |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
65 (documentation . t))) |
17052 | 66 |
67 ;;; thai.el ends here |