Mercurial > emacs
annotate lisp/language/thai.el @ 78447:65140a5dc349
(longlines-decoded): New variable.
(longlines-mode): Avoid encoding or decoding the buffer twice.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Tue, 07 Aug 2007 16:08:39 +0000 |
parents | 0938de05f510 |
children | b5d3fc1c4afe f55f9811f5d7 |
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, |
75347 | 4 ;; 2005, 2006, 2007 |
60709 | 5 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
6 ;; Registration Number H14PRO021 | |
74544 | 7 ;; Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, |
75347 | 8 ;; 2006, 2007 Free Software Foundation, Inc. |
17052 | 9 |
10 ;; Keywords: multilingual, Thai | |
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 | |
78309
0938de05f510
Restore comma mistakenly removed in last change.
Glenn Morris <rgm@gnu.org>
parents:
78300
diff
changeset
|
16 ;; the Free Software Foundation; either version 3, or (at your option) |
17052 | 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 |
64085 | 26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 ;; Boston, MA 02110-1301, USA. | |
17052 | 28 |
29 ;;; Commentary: | |
30 | |
31 ;; For Thai, the character set TIS620 is supported. | |
32 | |
33 ;;; Code: | |
34 | |
35 (make-coding-system | |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
36 'thai-tis620 2 ?T |
42152 | 37 "8-bit encoding for ASCII (MSB=0) and Thai TIS620 (MSB=1)." |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
38 '(ascii thai-tis620 nil nil |
48392
ca2088b6c38c
(thai-tis620): Make it safe.
Kenichi Handa <handa@m17n.org>
parents:
47726
diff
changeset
|
39 nil nil nil nil nil nil nil nil nil nil nil t) |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
40 '((safe-charsets ascii thai-tis620) |
47714
39f78ce51bd3
(thai-tis620): Add `mime-charset' property.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
41 (mime-charset . tis-620) |
26895
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
42 (post-read-conversion . thai-post-read-conversion))) |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
43 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
44 (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
|
45 (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
|
46 (define-coding-system-alias 'tis-620 'thai-tis620) |
17052 | 47 |
48 (set-language-info-alist | |
49 "Thai" '((tutorial . "TUTORIAL.th") | |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
50 (charset thai-tis620) |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
51 (coding-system thai-tis620) |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
52 (coding-priority thai-tis620) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
53 (nonascii-translation . thai-tis620) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
54 (input-method . "thai-kesmanee") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
55 (unibyte-display . thai-tis620) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
56 (features thai-util) |
61081
a8dfe0dc2ae7
("Thai"): Set setup-function and exit-function
Kenichi Handa <handa@m17n.org>
parents:
60709
diff
changeset
|
57 (setup-function . setup-thai-language-environment-internal) |
a8dfe0dc2ae7
("Thai"): Set setup-function and exit-function
Kenichi Handa <handa@m17n.org>
parents:
60709
diff
changeset
|
58 (exit-function . exit-thai-language-environment-internal) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48392
diff
changeset
|
59 (sample-text |
33225
1b0435120e67
("Thai"): Set a lisp form that produces
Kenichi Handa <handa@m17n.org>
parents:
26895
diff
changeset
|
60 . (thai-compose-string |
1b0435120e67
("Thai"): Set a lisp form that produces
Kenichi Handa <handa@m17n.org>
parents:
26895
diff
changeset
|
61 (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
|
62 (documentation . t))) |
17052 | 63 |
26895
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
64 |
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
65 ;; Register a function to compose Thai characters. |
60702
8ae87ebc392b
Fix patterns to be registered in composition-function-table.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
66 (let ((patterns '(("\\c0?\\(\\c2\\|\\c3\\|\\c4\\)+" |
41962 | 67 . thai-composition-function)))) |
68 (aset composition-function-table (make-char 'thai-tis620) patterns) | |
69 (dotimes (i (1+ (- #xe7f #xe00))) | |
70 (aset composition-function-table (decode-char 'ucs (+ i #xe00)) patterns))) | |
26895
5562243fdd2b
Register thai-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
24461
diff
changeset
|
71 |
33778 | 72 (provide 'thai) |
73 | |
52401 | 74 ;;; arch-tag: c7eb0e91-4db0-4619-81f8-8762e7d51e15 |
17052 | 75 ;;; thai.el ends here |