Mercurial > emacs
annotate lisp/language/thai.el @ 88898:ac49af641799
(Fmake_string): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 26 Jul 2002 04:05:01 +0000 |
parents | 4c12a4188863 |
children | 85b9175715b8 |
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 |
1b0435120e67
("Thai"): Set a lisp form that produces
Kenichi Handa <handa@m17n.org>
parents:
26895
diff
changeset
|
53 (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
|
54 (documentation . t))) |
17052 | 55 |
26895
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
56 |
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
57 ;; Register a function to compose Thai characters. |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
58 (set-char-table-range composition-function-table |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
59 '(#x0E00 . #x0E7F) |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
60 '(("\\c0\\c4\\|\\c0\\(\\c2\\|\\c3\\)\\c4?" |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
61 . thai-composition-function))) |
26895
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
62 |
88621
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
63 (define-coding-system 'cp874 |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
64 "DOS codepage 874 (Thai)" |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
65 :coding-type 'charset |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
66 :mnemonic ?D |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
67 :charset-list '(cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
68 :mime-charset 'cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
69 (define-coding-system-alias 'ibm874 'cp874) |
ff1346fa0a59
(cp874, ibm874): New coding systems.
Dave Love <fx@gnu.org>
parents:
88414
diff
changeset
|
70 |
88672 | 71 (define-coding-system 'iso-8859-11 |
72 "ISO/IEC 8859/11 (Latin/Thai) | |
73 This is the same as `thai-tis620' with the addition of no-break-space." | |
74 :coding-type 'charset | |
75 :mnemonic ?* | |
76 :mime-charset 'iso-8859-11 ; not actually registered as of 2002-05-24 | |
77 :charset-list '(iso-8859-11)) | |
78 | |
33778 | 79 (provide 'thai) |
80 | |
17052 | 81 ;;; thai.el ends here |