Mercurial > emacs
annotate lisp/language/thai.el @ 89326:59c6c749d00c
(insert_from_gap): Fix argument to offset_intervals.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 06 Jan 2003 01:17:47 +0000 |
parents | 85b9175715b8 |
children | 2f877ed80fa6 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
1 ;;; thai.el --- support for Thai -*- coding: iso-2022-7bit; -*- |
17052 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
18377
8b4a66c66dd6
Change copyright notice.
Richard M. Stallman <rms@gnu.org>
parents:
18309
diff
changeset
|
4 ;; Licensed to the Free Software Foundation. |
88672 | 5 ;; Copyright (C) 2002 Free Software Foundation, Inc. |
17052 | 6 |
88672 | 7 ;; Keywords: multilingual, Thai, i18n |
17052 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
17071 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
17052 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; For Thai, the character set TIS620 is supported. | |
29 | |
30 ;;; Code: | |
31 | |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
32 (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
|
33 "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
|
34 :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
|
35 :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
|
36 :charset-list '(tis620-2533)) |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
37 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
38 (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
|
39 (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
|
40 (define-coding-system-alias 'tis-620 'thai-tis620) |
17052 | 41 |
42 (set-language-info-alist | |
43 "Thai" '((tutorial . "TUTORIAL.th") | |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
44 (charset thai-tis620) |
88721
4c12a4188863
("Thai"): Add cp874, iso-8859-11 coding
Dave Love <fx@gnu.org>
parents:
88672
diff
changeset
|
45 (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
|
46 (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
|
47 (nonascii-translation . tis620-2533) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
48 (input-method . "thai-kesmanee") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
49 (unibyte-display . thai-tis620) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
50 (features thai-util) |
33225
1b0435120e67
("Thai"): Set a lisp form that produces
Kenichi Handa <handa@m17n.org>
parents:
26895
diff
changeset
|
51 (sample-text |
1b0435120e67
("Thai"): Set a lisp form that produces
Kenichi Handa <handa@m17n.org>
parents:
26895
diff
changeset
|
52 . (thai-compose-string |
89301
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
53 (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
|
54 (documentation . t))) |
17052 | 55 |
26895
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
56 |
88621
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
57 (define-coding-system 'cp874 |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
58 "DOS codepage 874 (Thai)" |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
59 :coding-type 'charset |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
60 :mnemonic ?D |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
61 :charset-list '(cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
62 :mime-charset 'cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
63 (define-coding-system-alias 'ibm874 'cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
64 |
88672 | 65 (define-coding-system 'iso-8859-11 |
66 "ISO/IEC 8859/11 (Latin/Thai) | |
67 This is the same as `thai-tis620' with the addition of no-break-space." | |
68 :coding-type 'charset | |
69 :mnemonic ?* | |
70 :mime-charset 'iso-8859-11 ; not actually registered as of 2002-05-24 | |
71 :charset-list '(iso-8859-11)) | |
72 | |
89301
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
73 ;; For automatic composition. |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
74 (let ((chars ",TQTUVWXYZghijklmn(B")) |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
75 (dotimes (i (length chars)) |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
76 (aset composition-function-table (aref chars i) |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
77 'thai-composition-function))) |
85b9175715b8
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88721
diff
changeset
|
78 |
33778 | 79 (provide 'thai) |
80 | |
17052 | 81 ;;; thai.el ends here |