Mercurial > emacs
annotate lisp/language/thai.el @ 106920:89b4f7566280
Fix ccl encoding of unibyte source.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 20 Jan 2010 13:01:57 +0900 |
parents | 1d1d5d9bd884 |
children | 376148b31b5e |
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 |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
74544
diff
changeset
|
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
106815 | 4 ;; 2005, 2006, 2007, 2008, 2009, 2010 |
60709 | 5 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
89483 | 6 ;; Registration Number H13PRO009 |
60709 | 7 ;; Copyright (C) 2005 |
8 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
9 ;; Registration Number H14PRO021 | |
74544 | 10 ;; Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, |
106815 | 11 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
17052 | 12 |
88672 | 13 ;; Keywords: multilingual, Thai, i18n |
17052 | 14 |
15 ;; This file is part of GNU Emacs. | |
16 | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
17 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17052 | 18 ;; it under the terms of the GNU General Public License as published by |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
19 ;; the Free Software Foundation, either version 3 of the License, or |
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
20 ;; (at your option) any later version. |
17052 | 21 |
22 ;; GNU Emacs is distributed in the hope that it will be useful, | |
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
25 ;; GNU General Public License for more details. | |
26 | |
27 ;; You should have received a copy of the GNU General Public License | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17052 | 29 |
30 ;;; Commentary: | |
31 | |
32 ;; For Thai, the character set TIS620 is supported. | |
33 | |
34 ;;; Code: | |
35 | |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
36 (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
|
37 "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
|
38 :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
|
39 :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
|
40 :charset-list '(tis620-2533)) |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
41 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
42 (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
|
43 (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
|
44 (define-coding-system-alias 'tis-620 'thai-tis620) |
17052 | 45 |
46 (set-language-info-alist | |
47 "Thai" '((tutorial . "TUTORIAL.th") | |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
48 (charset thai-tis620) |
88721
4c12a4188863
("Thai"): Add cp874, iso-8859-11 coding
Dave Love <fx@gnu.org>
parents:
88672
diff
changeset
|
49 (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
|
50 (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
|
51 (nonascii-translation . tis620-2533) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
52 (input-method . "thai-kesmanee") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
53 (unibyte-display . thai-tis620) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
54 (features thai-util) |
61081
a8dfe0dc2ae7
("Thai"): Set setup-function and exit-function
Kenichi Handa <handa@m17n.org>
parents:
60709
diff
changeset
|
55 (setup-function . setup-thai-language-environment-internal) |
a8dfe0dc2ae7
("Thai"): Set setup-function and exit-function
Kenichi Handa <handa@m17n.org>
parents:
60709
diff
changeset
|
56 (exit-function . exit-thai-language-environment-internal) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48392
diff
changeset
|
57 (sample-text |
33225
1b0435120e67
("Thai"): Set a lisp form that produces
Kenichi Handa <handa@m17n.org>
parents:
26895
diff
changeset
|
58 . (thai-compose-string |
90127
30ad2795fdab
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-28
Miles Bader <miles@gnu.org>
diff
changeset
|
59 (copy-sequence "Thai (,T@RIRd7B(B) ,TJGQJ4U$CQ:(B, ,TJGQJ4U$hP(B"))) |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
60 (documentation . t))) |
17052 | 61 |
88621
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
62 (define-coding-system 'cp874 |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
63 "DOS codepage 874 (Thai)" |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
64 :coding-type 'charset |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
65 :mnemonic ?D |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
66 :charset-list '(cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
67 :mime-charset 'cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
68 (define-coding-system-alias 'ibm874 'cp874) |
26895
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
69 |
88672 | 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 | |
89301
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
78 ;; For automatic composition. |
97839
6954172db216
Fix setting up of composition-function-table.
Kenichi Handa <handa@m17n.org>
parents:
94665
diff
changeset
|
79 (let ((chars ",TQTUVWXYZghijklmn(B") |
6954172db216
Fix setting up of composition-function-table.
Kenichi Handa <handa@m17n.org>
parents:
94665
diff
changeset
|
80 (elt '(["[,T!(B-,TO(B].[,Thijkl(B]?,TS(B?" 1 thai-composition-function] |
6954172db216
Fix setting up of composition-function-table.
Kenichi Handa <handa@m17n.org>
parents:
94665
diff
changeset
|
81 [nil 0 thai-composition-function]))) |
89301
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
82 (dotimes (i (length chars)) |
97839
6954172db216
Fix setting up of composition-function-table.
Kenichi Handa <handa@m17n.org>
parents:
94665
diff
changeset
|
83 (aset composition-function-table (aref chars i) elt))) |
6954172db216
Fix setting up of composition-function-table.
Kenichi Handa <handa@m17n.org>
parents:
94665
diff
changeset
|
84 (aset composition-function-table ?,TS(B '(["[,T!(B-,TO(B]." 1 thai-composition-function])) |
26895
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
85 |
33778 | 86 (provide 'thai) |
87 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
88 ;; arch-tag: c7eb0e91-4db0-4619-81f8-8762e7d51e15 |
17052 | 89 ;;; thai.el ends here |