Mercurial > emacs
annotate lisp/language/thai.el @ 89942:9cb747ae49af emacs-unicode-2-pre-sync
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sat, 29 May 2004 02:17:09 +0000 |
parents | 68c22ea6027c |
children | 30ad2795fdab |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
47714
diff
changeset
|
1 ;;; thai.el --- support for Thai -*- coding: iso-2022-7bit; no-byte-compile: t -*- |
17052 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
89483 | 4 ;; Licensed to the Free Software Foundation. |
88672 | 5 ;; Copyright (C) 2002 Free Software Foundation, Inc. |
89483 | 6 ;; Copyright (C) 2003 |
7 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
8 ;; Registration Number H13PRO009 | |
17052 | 9 |
88672 | 10 ;; Keywords: multilingual, Thai, i18n |
17052 | 11 |
12 ;; This file is part of GNU Emacs. | |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
16 ;; the Free Software Foundation; either version 2, or (at your option) | |
17 ;; any later version. | |
18 | |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
17071 | 25 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
27 ;; Boston, MA 02111-1307, USA. | |
17052 | 28 |
29 ;;; Commentary: | |
30 | |
31 ;; For Thai, the character set TIS620 is supported. | |
32 | |
33 ;;; Code: | |
34 | |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
35 (define-coding-system 'thai-tis620 |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
36 "8-bit encoding for ASCII (MSB=0) and Thai TIS620 (MSB=1)." |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
37 :coding-type 'charset |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
38 :mnemonic ?T |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
39 :charset-list '(tis620-2533)) |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
40 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
41 (define-coding-system-alias 'th-tis620 'thai-tis620) |
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
42 (define-coding-system-alias 'tis620 'thai-tis620) |
24461
477d5b1ea759
(tis-620): New alias coding system for thai-tis620.
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
43 (define-coding-system-alias 'tis-620 'thai-tis620) |
17052 | 44 |
45 (set-language-info-alist | |
46 "Thai" '((tutorial . "TUTORIAL.th") | |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
47 (charset thai-tis620) |
88721
4c12a4188863
("Thai"): Add cp874, iso-8859-11 coding
Dave Love <fx@gnu.org>
parents:
88672
diff
changeset
|
48 (coding-system thai-tis620 iso-8859-11 cp874) |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
49 (coding-priority thai-tis620) |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
50 (nonascii-translation . tis620-2533) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
51 (input-method . "thai-kesmanee") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
52 (unibyte-display . thai-tis620) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
53 (features thai-util) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48392
diff
changeset
|
54 (sample-text |
33225
1b0435120e67
("Thai"): Set a lisp form that produces
Kenichi Handa <handa@m17n.org>
parents:
26895
diff
changeset
|
55 . (thai-compose-string |
1b0435120e67
("Thai"): Set a lisp form that produces
Kenichi Handa <handa@m17n.org>
parents:
26895
diff
changeset
|
56 (copy-sequence "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
|
57 (documentation . t))) |
17052 | 58 |
88621
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
59 (define-coding-system 'cp874 |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
60 "DOS codepage 874 (Thai)" |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
61 :coding-type 'charset |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
62 :mnemonic ?D |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
63 :charset-list '(cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
64 :mime-charset 'cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
65 (define-coding-system-alias 'ibm874 'cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
66 |
88672 | 67 (define-coding-system 'iso-8859-11 |
68 "ISO/IEC 8859/11 (Latin/Thai) | |
69 This is the same as `thai-tis620' with the addition of no-break-space." | |
70 :coding-type 'charset | |
71 :mnemonic ?* | |
72 :mime-charset 'iso-8859-11 ; not actually registered as of 2002-05-24 | |
73 :charset-list '(iso-8859-11)) | |
74 | |
89301
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
75 ;; For automatic composition. |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
76 (let ((chars ",TQTUVWXYZghijklmn(B")) |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
77 (dotimes (i (length chars)) |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
78 (aset composition-function-table (aref chars i) |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
79 'thai-composition-function))) |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
80 |
33778 | 81 (provide 'thai) |
82 | |
89909 | 83 ;;; arch-tag: c7eb0e91-4db0-4619-81f8-8762e7d51e15 |
17052 | 84 ;;; thai.el ends here |