Mercurial > emacs
annotate lisp/language/lao.el @ 90053:fff5f1a61d92
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 06 Dec 2004 12:38:25 +0000 |
parents | 68c22ea6027c |
children | f042e7c0fe20 |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
42152
diff
changeset
|
1 ;;; lao.el --- support for Lao -*- coding: iso-2022-7bit; no-byte-compile: t -*- |
17083 | 2 |
3 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. | |
89483 | 4 ;; Licensed to the Free Software Foundation. |
41889 | 5 ;; Copyright (C) 2001 Free Software Foundation, Inc. |
89483 | 6 ;; Copyright (C) 2003 |
7 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
8 ;; Registration Number H13PRO009 | |
17083 | 9 |
10 ;; Keywords: multilingual, Lao | |
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 | |
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. | |
28 | |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
29 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
30 |
17083 | 31 ;;; Code: |
32 | |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
33 (define-coding-system 'lao |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
34 "8-bit encoding for ASCII (MSB=0) and LAO (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
|
35 :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
|
36 :mnemonic ?L |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
37 :charset-list '(lao)) |
17083 | 38 |
39 (set-language-info-alist | |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
40 "Lao" '((charset lao) |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
41 (coding-system lao) |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
42 (coding-priority lao) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
43 (input-method . "lao") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
44 (unibyte-display . lao) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
45 (features lao-util) |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
46 (documentation . t))) |
17083 | 47 |
89299
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
48 ;; For automatic composition. |
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
49 (let ((chars "(1QTUVWXY[\hijklm(B")) |
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
50 (dotimes (i (length chars)) |
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
51 (aset composition-function-table (aref chars i) |
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
52 'lao-composition-function))) |
26893
78d4a8d767d5
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
53 |
33778 | 54 (provide 'lao) |
55 | |
89909 | 56 ;;; arch-tag: ba540fd9-6352-4449-a9cd-669afd21fa57 |
17083 | 57 ;;; lao.el ends here |