Mercurial > emacs
annotate lisp/language/lao.el @ 91025:3cb16c370b58
(x_set_glyph_string_clipping): Use
get_glyph_string_clip_rects.
(x_set_glyph_string_clipping_exactly): Adjusted for the change fo
struct glyph_string.
(x_draw_glyph_string): Likewise.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 13 Sep 2007 11:02:20 +0000 |
parents | f55f9811f5d7 |
children | 585e7f50637d |
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 |
62396 | 3 ;; Copyright (C) 2001 Free Software Foundation, Inc. |
75347 | 4 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 |
62396 | 5 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
6 ;; Registration Number H14PRO021 | |
89483 | 7 ;; Copyright (C) 2003 |
8 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
9 ;; Registration Number H13PRO009 | |
17083 | 10 |
11 ;; Keywords: multilingual, Lao | |
12 | |
13 ;; This file is part of GNU Emacs. | |
14 | |
15 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
16 ;; 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
|
17 ;; the Free Software Foundation; either version 3, or (at your option) |
17083 | 18 ;; any later version. |
19 | |
20 ;; GNU Emacs is distributed in the hope that it will be useful, | |
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 ;; GNU General Public License for more details. | |
24 | |
25 ;; You should have received a copy of the GNU General Public License | |
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 27 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
28 ;; Boston, MA 02110-1301, USA. | |
17083 | 29 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
30 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
31 |
17083 | 32 ;;; Code: |
33 | |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
34 (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
|
35 "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
|
36 :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
|
37 :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
|
38 :charset-list '(lao)) |
17083 | 39 |
40 (set-language-info-alist | |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
41 "Lao" '((charset lao) |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
42 (coding-system lao) |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20156
diff
changeset
|
43 (coding-priority lao) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
44 (input-method . "lao") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
45 (unibyte-display . lao) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
46 (features lao-util) |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
47 (documentation . t))) |
17083 | 48 |
89299
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
49 ;; For automatic composition. |
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
50 (let ((chars "(1QTUVWXY[\hijklm(B")) |
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
51 (dotimes (i (length chars)) |
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
52 (aset composition-function-table (aref chars i) |
a89011cf0b79
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
88414
diff
changeset
|
53 'lao-composition-function))) |
26893
78d4a8d767d5
Register lao-composition-function in
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
54 |
33778 | 55 (provide 'lao) |
56 | |
52401 | 57 ;;; arch-tag: ba540fd9-6352-4449-a9cd-669afd21fa57 |
17083 | 58 ;;; lao.el ends here |