Mercurial > emacs
annotate leim/quail/lao.el @ 68140:4baa8cfc2485
(init-file-user): defcustom -> defvar.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Thu, 12 Jan 2006 02:27:00 +0000 |
parents | b94a4bf1aca6 |
children | 6ee41fdd69ff 7beb78bc1f8e |
rev | line source |
---|---|
40710 | 1 ;;; lao.el --- Quail package for inputting Lao characters -*-coding: iso-2022-7bit;-*- |
18673 | 2 |
67657 | 3 ;; Copyright (C) 1997, 1999, 2004 |
58756
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
4 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
5 ;; Registration Number H14PRO021 |
18673 | 6 |
7 ;; Keywords: multilingual, input method, Lao | |
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 | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64083 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
18673 | 25 |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
26881
diff
changeset
|
26 ;;; Commentary: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
26881
diff
changeset
|
27 |
18673 | 28 ;;; Code: |
29 | |
30 (require 'quail) | |
31 (require 'lao-util) | |
32 | |
26881
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
33 (defun quail-lao-update-translation (control-flag) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
34 (if (integerp control-flag) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
35 ;; Non-composable character typed. |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
36 (setq quail-current-str |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
37 (buffer-substring (overlay-start quail-overlay) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
38 (overlay-end quail-overlay)) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
39 unread-command-events |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
40 (string-to-list |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
41 (substring quail-current-key control-flag))) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
42 (setq quail-current-str |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
43 (compose-string (quail-lookup-map-and-concat quail-current-key)))) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
44 control-flag) |
18673 | 45 |
58756
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
46 (defvar lao-key-alist |
26881
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
47 '(("!" . "1") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
48 ("\"" . "=") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
49 ("#" . "3") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
50 ("$" . "4") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
51 ("&" . "5") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
52 ("%" . "(1l(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
53 ("'" . "(1'(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
54 ("(" . "7") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
55 (")" . "8") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
56 ("*" . "6") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
57 ("+" . ["(1mh(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
58 ("," . "(1A(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
59 ("-" . "(1*(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
60 ("." . "(1c(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
61 ("/" . "(1=(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
62 ("0" . "(1"(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
63 ("1" . "(1B(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
64 ("2" . "(1?(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
65 ("3" . "(1b(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
66 ("4" . "(16(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
67 ("5" . "(1X(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
68 ("6" . "(1Y(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
69 ("7" . "(1$(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
70 ("8" . "(15(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
71 ("9" . "(1((B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
72 (":" . "%") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
73 (";" . "(1G(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
74 ("<" . "(1}(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
75 ("=" . "(1m(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
76 (">" . "$") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
77 ("?" . ")") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
78 ("@" . "2") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
79 ("A" . ["(1Qi(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
80 ("B" . ["(1Vi(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
81 ("C" . "(1O(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
82 ("D" . ".") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
83 ("E" . ["(1Si(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
84 ("F" . ",") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
85 ("G" . ":") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
86 ("H" . "(1j(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
87 ("I" . "(1N(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
88 ("J" . "(1k(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
89 ("K" . "!") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
90 ("L" . "?") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
91 ("M" . "(1f(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
92 ("N" . ["(1Wi(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
93 ("O" . "(1|(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
94 ("P" . "(1](B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
95 ("Q" . ["(1[i(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
96 ("R" . "_") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
97 ("S" . ";") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
98 ("T" . "+") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
99 ("U" . ["(1Ui(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
100 ("V" . "x") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
101 ("W" . "0") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
102 ("X" . "(") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
103 ("Y" . ["(1Ti(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
104 ("Z" . "\"") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
105 ("[" . "(1:(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
106 ("]" . "(1E(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
107 ("^" . "(1\(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
108 ("_" . "9") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
109 ("`" . "(1'(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
110 ("a" . "(1Q(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
111 ("b" . "(1V(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
112 ("c" . "(1a(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
113 ("d" . "(1!(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
114 ("e" . "(1S(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
115 ("f" . "(14(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
116 ("g" . "(1`(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
117 ("h" . "(1i(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
118 ("i" . "(1C(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
119 ("j" . "(1h(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
120 ("k" . "(1R(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
121 ("l" . "(1J(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
122 ("m" . "(17(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
123 ("n" . "(1W(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
124 ("o" . "(19(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
125 ("p" . "(1-(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
126 ("q" . "(1[(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
127 ("r" . "(1>(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
128 ("s" . "(1K(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
129 ("t" . "(1P(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
130 ("u" . "(1U(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
131 ("v" . "(1M(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
132 ("w" . "(1d(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
133 ("x" . "(1;(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
134 ("y" . "(1T(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
135 ("z" . "(1<(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
136 ("{" . "-") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
137 ("|" . ["(1K\(B"]) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
138 ("}" . "/") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
139 ("~" . "(1l(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
140 ("\\0" . "(1p(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
141 ("\\1" . "(1q(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
142 ("\\2" . "(1r(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
143 ("\\3" . "(1s(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
144 ("\\4" . "(1t(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
145 ("\\5" . "(1u(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
146 ("\\6" . "(1v(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
147 ("\\7" . "(1w(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
148 ("\\8" . "(1x(B") |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
149 ("\\9" . "(1y(B") |
58756
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
150 ) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
151 "Alist of key sequences vs the corresponding Lao string to input. |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
152 This variable is for the input method \"lao\". |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
153 If you change the value of this variable while quail/lao is already loaded, |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
154 you need to re-load it to properly re-initialize related alists.") |
18673 | 155 |
58756
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
156 ;; Temporary variable to initialize lao-consonant-key-alist, etc. |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
157 (defconst lao-key-alist-vector |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
158 (let ((tail lao-key-alist) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
159 consonant-key-alist semivowel-key-alist vowel-key-alist |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
160 voweltone-key-alist tone-key-alist other-key-alist |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
161 elt phonetic-type) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
162 (while tail |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
163 (setq elt (car tail) tail (cdr tail)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
164 (if (stringp (cdr elt)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
165 (setq phonetic-type (get-char-code-property (aref (cdr elt) 0) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
166 'phonetic-type)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
167 (setq phonetic-type (get-char-code-property (aref (aref (cdr elt) 0) 0) |
26881
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
168 'phonetic-type)) |
58756
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
169 (aset (cdr elt) 0 (compose-string (aref (cdr elt) 0)))) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
170 (cond ((eq phonetic-type 'consonant) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
171 (setq consonant-key-alist (cons elt consonant-key-alist))) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
172 ((memq phonetic-type '(vowel-upper vowel-lower)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
173 (if (stringp (cdr elt)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
174 (setq vowel-key-alist (cons elt vowel-key-alist)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
175 (setq voweltone-key-alist (cons elt voweltone-key-alist)))) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
176 ((eq phonetic-type 'tone) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
177 (setq tone-key-alist (cons elt tone-key-alist))) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
178 ((eq phonetic-type 'semivowel-lower) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
179 (setq semivowel-key-alist (cons elt semivowel-key-alist))) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
180 (t |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
181 (setq other-key-alist (cons elt other-key-alist))))) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
182 (vector consonant-key-alist semivowel-key-alist vowel-key-alist |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
183 voweltone-key-alist tone-key-alist other-key-alist))) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
184 |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
185 (defconst lao-consonant-key-alist (aref lao-key-alist-vector 0)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
186 (defconst lao-semivowel-key-alist (aref lao-key-alist-vector 1)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
187 (defconst lao-vowel-key-alist (aref lao-key-alist-vector 2)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
188 (defconst lao-voweltone-key-alist (aref lao-key-alist-vector 3)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
189 (defconst lao-tone-key-alist (aref lao-key-alist-vector 4)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
190 (defconst lao-other-key-alist (aref lao-key-alist-vector 5)) |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
191 |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
192 ;; Done with it. |
592861b6d3c5
(lao-key-alist): Declare it by defvar.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
193 (makunbound 'lao-key-alist-vector) |
18673 | 194 |
195 (quail-define-package | |
19261
84a9af170661
Change title string of input method "Lao".
Kenichi Handa <handa@m17n.org>
parents:
18673
diff
changeset
|
196 "lao" "Lao" "(1E(B" t |
18673 | 197 "Lao input method simulating Lao keyboard layout based on Thai TIS620" |
26881
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
198 nil t t t t nil nil nil 'quail-lao-update-translation nil t) |
18673 | 199 |
26881
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
200 (quail-install-map |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
201 (quail-map-from-table |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
202 '((base-state (lao-consonant-key-alist . svt-state) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
203 lao-vowel-key-alist |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
204 lao-voweltone-key-alist |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
205 lao-tone-key-alist |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
206 lao-other-key-alist) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
207 (svt-state (lao-semivowel-key-alist . v-state) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
208 (lao-vowel-key-alist . t-state) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
209 lao-voweltone-key-alist) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
210 (v-state (lao-vowel-key-alist . t-state)) |
cd1cb9bf30e1
Rewritten for new composition.
Kenichi Handa <handa@m17n.org>
parents:
19722
diff
changeset
|
211 (t-state lao-tone-key-alist)))) |
18673 | 212 |
52401 | 213 ;;; arch-tag: 23863a30-a8bf-402c-b7ce-c517a7aa8570 |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
26881
diff
changeset
|
214 ;;; lao.el ends here |