Mercurial > emacs
annotate leim/quail/cyrillic.el @ 89549:eaae96c859d2
(frame_name_fnn_p): Make len EMACS_INT.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 29 Sep 2003 18:03:38 +0000 |
parents | 2f877ed80fa6 |
children | 68c22ea6027c |
rev | line source |
---|---|
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24947
diff
changeset
|
1 ;;; cyrillic.el --- Quail package for inputting Cyrillic characters |
18673 | 2 |
3 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. | |
4 ;; Licensed to the Free Software Foundation. | |
46499 | 5 ;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. |
18673 | 6 |
88730 | 7 ;; Author: TAKAHASHI Naoto <ntakahas@m17n.org> |
8 ;; Keywords: multilingual, input method, Cyrillic, i18n | |
18673 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24947
diff
changeset
|
27 ;;; Commentary: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24947
diff
changeset
|
28 |
46499 | 29 ;; These methods use a mixture of 8859-5 and Unicode. Quail, used |
30 ;; with ucs-tables provides suport for translating on the fly to | |
31 ;; what's appropriate for aa buffer's file coding system, so the | |
32 ;; encoding shouldn't matter too much provided it supports the | |
33 ;; necessary characters. | |
34 | |
18673 | 35 ;;; Code: |
36 | |
37 (require 'quail) | |
38 | |
88730 | 39 ;; This was `cyrillic-jcuken'. Alexander Mikhailian |
40 ;; <mikhailian@altern.org> says: "cyrillic-jcuken" is actually | |
41 ;; russian. It is ok but a bit outdated. This layout has been used | |
42 ;; in typewriters for ages but it has been superceeded on desktops by | |
43 ;; a variation of this layout, implemented in M$ Windows software. | |
44 ;; The Windows layout is greatly preferred because of the comma and | |
45 ;; period being placed more conviniently and, of course, because of | |
46 ;; the popularity of Windows software. This layout is a common option | |
47 ;; in X Windows and console layouts for GNU/Linux. [See | |
48 ;; `russian-computer' below.] | |
18673 | 49 (quail-define-package |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
50 "russian-typewriter" "Russian" ",L69(B" nil |
46499 | 51 ",L9FC:5=(B Russian typewriter layout (ISO 8859-5 encoding)." |
19722
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
19386
diff
changeset
|
52 nil t t t t nil nil nil nil nil t) |
18673 | 53 |
24947
4f788869cb29
(cyrillic-jcuken): Use X11 keyboard layout.
Richard M. Stallman <rms@gnu.org>
parents:
19722
diff
changeset
|
54 ;; 1! 2" 3' 4* 5: 6, 7. 8; 9( 0) -_ =+ ,L!(B |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
55 ;; ,L9(B ,LF(B ,LC(B ,L:(B ,L5(B ,L=(B ,L3(B ,LH(B ,LI(B ,L7(B ,LE(B ,Lj(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
56 ;; ,LD(B ,LK(B ,L2(B ,L0(B ,L?(B ,L@(B ,L>(B ,L;(B ,L4(B ,L6(B ,LM(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
57 ;; ,LO(B ,LG(B ,LA(B ,L<(B ,L8(B ,LB(B ,LL(B ,L1(B ,LN(B /? |
18673 | 58 |
59 (quail-define-rules | |
60 ("1" ?1) | |
61 ("2" ?2) | |
62 ("3" ?3) | |
63 ("4" ?4) | |
64 ("5" ?5) | |
65 ("6" ?6) | |
66 ("7" ?7) | |
67 ("8" ?8) | |
68 ("9" ?9) | |
69 ("0" ?0) | |
70 ("-" ?-) | |
71 ("=" ?=) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
72 ("`" ?,Lq(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
73 ("q" ?,LY(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
74 ("w" ?,Lf(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
75 ("e" ?,Lc(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
76 ("r" ?,LZ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
77 ("t" ?,LU(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
78 ("y" ?,L](B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
79 ("u" ?,LS(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
80 ("i" ?,Lh(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
81 ("o" ?,Li(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
82 ("p" ?,LW(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
83 ("[" ?,Le(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
84 ("]" ?,Lj(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
85 ("a" ?,Ld(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
86 ("s" ?,Lk(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
87 ("d" ?,LR(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
88 ("f" ?,LP(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
89 ("g" ?,L_(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
90 ("h" ?,L`(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
91 ("j" ?,L^(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
92 ("k" ?,L[(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
93 ("l" ?,LT(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
94 (";" ?,LV(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
95 ("'" ?,Lm(B) |
18673 | 96 ("\\" ?\\) |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
97 ("z" ?,Lo(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
98 ("x" ?,Lg(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
99 ("c" ?,La(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
100 ("v" ?,L\(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
101 ("b" ?,LX(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
102 ("n" ?,Lb(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
103 ("m" ?,Ll(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
104 ("," ?,LQ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
105 ("." ?,Ln(B) |
18673 | 106 ("/" ?/) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
107 |
18673 | 108 ("!" ?!) |
24947
4f788869cb29
(cyrillic-jcuken): Use X11 keyboard layout.
Richard M. Stallman <rms@gnu.org>
parents:
19722
diff
changeset
|
109 ("@" ?\") |
4f788869cb29
(cyrillic-jcuken): Use X11 keyboard layout.
Richard M. Stallman <rms@gnu.org>
parents:
19722
diff
changeset
|
110 ("#" ?') |
4f788869cb29
(cyrillic-jcuken): Use X11 keyboard layout.
Richard M. Stallman <rms@gnu.org>
parents:
19722
diff
changeset
|
111 ("$" ?*) |
18673 | 112 ("%" ?:) |
113 ("^" ?,) | |
114 ("&" ?.) | |
24947
4f788869cb29
(cyrillic-jcuken): Use X11 keyboard layout.
Richard M. Stallman <rms@gnu.org>
parents:
19722
diff
changeset
|
115 ("*" ?\;) |
88730 | 116 ("(" ?\() |
117 (")" ?\)) | |
18673 | 118 ("_" ?_) |
119 ("+" ?+) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
120 ("~" ?,L!(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
121 ("Q" ?,L9(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
122 ("W" ?,LF(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
123 ("E" ?,LC(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
124 ("R" ?,L:(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
125 ("T" ?,L5(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
126 ("Y" ?,L=(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
127 ("U" ?,L3(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
128 ("I" ?,LH(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
129 ("O" ?,LI(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
130 ("P" ?,L7(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
131 ("{" ?,LE(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
132 ("}" ?,LJ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
133 ("A" ?,LD(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
134 ("S" ?,LK(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
135 ("D" ?,L2(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
136 ("F" ?,L0(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
137 ("G" ?,L?(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
138 ("H" ?,L@(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
139 ("J" ?,L>(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
140 ("K" ?,L;(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
141 ("L" ?,L4(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
142 (":" ?,L6(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
143 ("\"" ?,LM(B) |
18673 | 144 ("|" ?|) |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
145 ("Z" ?,LO(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
146 ("X" ?,LG(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
147 ("C" ?,LA(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
148 ("V" ?,L<(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
149 ("B" ?,L8(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
150 ("N" ?,LB(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
151 ("M" ?,LL(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
152 ("<" ?,L1(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
153 (">" ?,LN(B) |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
154 ("?" ??) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
155 ) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
156 |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
157 ;; Maintain the obsolete name for now. |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
158 (push (cons "cyrillic-jcuken" |
49639
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
159 (cdr (assoc "russian-typewriter" quail-package-alist))) |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
160 quail-package-alist) |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
161 |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
162 ;; This needs to be seen by quail-update-leim-list-file, but cannot be |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
163 ;; commented out because quail-update-leim-list-file ignores |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
164 ;; commented-out lines. |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
165 (if nil |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
166 (quail-define-package |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
167 "cyrillic-jcuken" "Russian" ",L69(B" nil |
d95c594fa5b6
Update quail-package-alist (not
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
168 ",L9FC:5=(B Russian typewriter layout (ISO 8859-5 encoding).")) |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
169 |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
170 ;; See comment above. This is the variant `winkeys' from `ru' in XKB. |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
171 (quail-define-package |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
172 "russian-computer" "Russian" "RU" nil |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
173 ",L9FC:5=(B Russian computer layout" |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
174 nil t t t t nil nil nil nil nil t) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
175 |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
176 ;; 1! 2" 3,Lp(B 4; 5% 6: 7? 8* 9( 0) -_ =+ ,Lq!(B |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
177 ;; ,L9(B ,LF(B ,LC(B ,L:(B ,L5(B ,L=(B ,L3(B ,LH(B ,LI(B ,L7(B ,LE(B ,Lj(B |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
178 ;; ,LD(B ,LK(B ,L2(B ,L0(B ,L?(B ,L@(B ,L>(B ,L;(B ,L4(B ,L6(B ,LM(B |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
179 ;; ,LO(B ,LG(B ,LA(B ,L<(B ,L8(B ,LB(B ,LL(B ,L1(B ,LN(B ., |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
180 |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
181 (quail-define-rules |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
182 ("1" ?1) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
183 ("2" ?2) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
184 ("3" ?3) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
185 ("4" ?4) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
186 ("5" ?5) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
187 ("6" ?6) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
188 ("7" ?7) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
189 ("8" ?8) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
190 ("9" ?9) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
191 ("0" ?0) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
192 ("-" ?-) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
193 ("=" ?=) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
194 ("`" ?,Lq(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
195 ("q" ?,LY(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
196 ("w" ?,Lf(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
197 ("e" ?,Lc(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
198 ("r" ?,LZ(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
199 ("t" ?,LU(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
200 ("y" ?,L](B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
201 ("u" ?,LS(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
202 ("i" ?,Lh(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
203 ("o" ?,Li(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
204 ("p" ?,LW(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
205 ("[" ?,Le(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
206 ("]" ?,Lj(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
207 ("a" ?,Ld(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
208 ("s" ?,Lk(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
209 ("d" ?,LR(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
210 ("f" ?,LP(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
211 ("g" ?,L_(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
212 ("h" ?,L`(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
213 ("j" ?,L^(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
214 ("k" ?,L[(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
215 ("l" ?,LT(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
216 (";" ?,LV(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
217 ("'" ?,Lm(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
218 ("\\" ?\\) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
219 ("z" ?,Lo(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
220 ("x" ?,Lg(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
221 ("c" ?,La(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
222 ("v" ?,L\(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
223 ("b" ?,LX(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
224 ("n" ?,Lb(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
225 ("m" ?,Ll(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
226 ("," ?,LQ(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
227 ("." ?,Ln(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
228 ("/" ?.) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
229 ("!" ?!) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
230 ("@" ?\") |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
231 ("#" ?,Lp(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
232 ("$" ?\;) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
233 ("%" ?%) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
234 ("^" ?:) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
235 ("&" ??) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
236 ("*" ?*) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
237 ("(" ?() |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
238 (")" ?)) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
239 ("_" ?_) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
240 ("+" ?+) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
241 ("~" ?,L!(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
242 ("Q" ?,L9(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
243 ("W" ?,LF(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
244 ("E" ?,LC(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
245 ("R" ?,L:(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
246 ("T" ?,L5(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
247 ("Y" ?,L=(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
248 ("U" ?,L3(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
249 ("I" ?,LH(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
250 ("O" ?,LI(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
251 ("P" ?,L7(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
252 ("{" ?,LE(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
253 ("}" ?,LJ(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
254 ("A" ?,LD(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
255 ("S" ?,LK(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
256 ("D" ?,L2(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
257 ("F" ?,L0(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
258 ("G" ?,L?(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
259 ("H" ?,L@(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
260 ("J" ?,L>(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
261 ("K" ?,L;(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
262 ("L" ?,L4(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
263 (":" ?,L6(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
264 ("\"" ?,LM(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
265 ("|" ?|) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
266 ("Z" ?,LO(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
267 ("X" ?,LG(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
268 ("C" ?,LA(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
269 ("V" ?,L<(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
270 ("B" ?,L8(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
271 ("N" ?,LB(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
272 ("M" ?,LL(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
273 ("<" ?,L1(B) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
274 (">" ?,LN(B) |
88730 | 275 ("?" ?,)) |
18673 | 276 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
277 ;; Mikhailian couldn't check the next two. |
18673 | 278 |
88730 | 279 ;; This seems to have the same layout for letters as mk in XKB, but at |
280 ;; least the top row is different. | |
18673 | 281 (quail-define-package |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
282 "cyrillic-macedonian" "Cyrillic" ",L6(BM" nil |
88730 | 283 ",L)*5@B7(B-,L#,(B keyboard layout based on JUS.I.K1.004" |
19722
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
19386
diff
changeset
|
284 nil t t t t nil nil nil nil nil t) |
18673 | 285 |
286 ;; 1! 2" 3# 4$ 5% 6& 7' 8( 9) 0= /? +* <> | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
287 ;; ,L)(B ,L*(B ,L5(B ,L@(B ,LB(B ,L7(B ,LC(B ,L8(B ,L>(B ,L?(B ,LH(B ,L#(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
288 ;; ,L0(B ,LA(B ,L4(B ,LD(B ,L3(B ,LE(B ,L((B ,L:(B ,L;(B ,LG(B ,L,(B ,L6(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
289 ;; ,L%(B ,L/(B ,LF(B ,L2(B ,L1(B ,L=(B ,L<(B ,; .: -_ |
18673 | 290 |
291 (quail-define-rules | |
292 ("1" ?1) | |
293 ("2" ?2) | |
294 ("3" ?3) | |
295 ("4" ?4) | |
296 ("5" ?5) | |
297 ("6" ?6) | |
298 ("7" ?7) | |
299 ("8" ?8) | |
300 ("9" ?9) | |
301 ("0" ?0) | |
302 ("-" ?/) | |
303 ("=" ?+) | |
304 ("`" ?<) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
305 ("q" ?,Ly(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
306 ("w" ?,Lz(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
307 ("e" ?,LU(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
308 ("r" ?,L`(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
309 ("t" ?,Lb(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
310 ("y" ?,LW(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
311 ("u" ?,Lc(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
312 ("i" ?,LX(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
313 ("o" ?,L^(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
314 ("p" ?,L_(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
315 ("[" ?,Lh(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
316 ("]" ?,Ls(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
317 ("a" ?,LP(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
318 ("s" ?,La(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
319 ("d" ?,LT(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
320 ("f" ?,Ld(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
321 ("g" ?,LS(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
322 ("h" ?,Le(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
323 ("j" ?,Lx(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
324 ("k" ?,LZ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
325 ("l" ?,L[(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
326 (";" ?,Lg(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
327 ("'" ?,L|(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
328 ("\\" ?,LV(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
329 ("z" ?,Lu(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
330 ("x" ?,L(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
331 ("c" ?,Lf(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
332 ("v" ?,LR(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
333 ("b" ?,LQ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
334 ("n" ?,L](B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
335 ("m" ?,L\(B) |
18673 | 336 ("," ?,) |
337 ("." ?.) | |
338 ("/" ?-) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
339 |
18673 | 340 ("!" ?!) |
341 ("@" ?\") | |
342 ("#" ?#) | |
343 ("$" ?$) | |
344 ("%" ?%) | |
345 ("^" ?&) | |
346 ("&" ?') | |
347 ("*" ?\() | |
348 ("(" ?\)) | |
349 (")" ?=) | |
350 ("_" ??) | |
351 ("+" ?*) | |
352 ("~" ?>) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
353 ("Q" ?,L)(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
354 ("W" ?,L*(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
355 ("E" ?,L5(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
356 ("R" ?,L@(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
357 ("T" ?,LB(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
358 ("Y" ?,L7(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
359 ("U" ?,LC(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
360 ("I" ?,L8(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
361 ("O" ?,L>(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
362 ("P" ?,L?(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
363 ("{" ?,LH(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
364 ("}" ?,L#(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
365 ("A" ?,L0(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
366 ("S" ?,LA(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
367 ("D" ?,L4(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
368 ("F" ?,LD(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
369 ("G" ?,L3(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
370 ("H" ?,LE(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
371 ("J" ?,L((B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
372 ("K" ?,L:(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
373 ("L" ?,L;(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
374 (":" ?,LG(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
375 ("\"" ?,L,(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
376 ("|" ?,L6(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
377 ("Z" ?,L%(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
378 ("X" ?,L/(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
379 ("C" ?,LF(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
380 ("V" ?,L2(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
381 ("B" ?,L1(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
382 ("N" ?,L=(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
383 ("M" ?,L<(B) |
18673 | 384 ("<" ?\;) |
385 (">" ?:) | |
386 ("?" ?_)) | |
387 | |
388 ;; | |
389 | |
390 (quail-define-package | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
391 "cyrillic-serbian" "Cyrillic" ",L6(BS" nil |
88730 | 392 ",L)*5@B7(B-,L"+(B keyboard layout based on JUS.I.K1.005" |
19722
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
19386
diff
changeset
|
393 nil t t t t nil nil nil nil nil t) |
18673 | 394 |
395 ;; 1! 2" 3# 4$ 5% 6& 7' 8( 9) 0= /? +* <> | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
396 ;; ,L)(B ,L*(B ,L5(B ,L@(B ,LB(B ,L7(B ,LC(B ,L8(B ,L>(B ,L?(B ,LH(B ,L"(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
397 ;; ,L0(B ,LA(B ,L4(B ,LD(B ,L3(B ,LE(B ,L((B ,L:(B ,L;(B ,LG(B ,L+(B ,L6(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
398 ;; ,L%(B ,L/(B ,LF(B ,L2(B ,L1(B ,L=(B ,L<(B ,; .: -_ |
18673 | 399 |
400 (quail-define-rules | |
401 ("1" ?1) | |
402 ("2" ?2) | |
403 ("3" ?3) | |
404 ("4" ?4) | |
405 ("5" ?5) | |
406 ("6" ?6) | |
407 ("7" ?7) | |
408 ("8" ?8) | |
409 ("9" ?9) | |
410 ("0" ?0) | |
411 ("-" ?/) | |
412 ("=" ?+) | |
413 ("`" ?<) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
414 ("q" ?,Ly(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
415 ("w" ?,Lz(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
416 ("e" ?,LU(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
417 ("r" ?,L`(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
418 ("t" ?,Lb(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
419 ("y" ?,LW(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
420 ("u" ?,Lc(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
421 ("i" ?,LX(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
422 ("o" ?,L^(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
423 ("p" ?,L_(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
424 ("[" ?,Lh(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
425 ("]" ?,Lr(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
426 ("a" ?,LP(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
427 ("s" ?,La(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
428 ("d" ?,LT(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
429 ("f" ?,Ld(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
430 ("g" ?,LS(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
431 ("h" ?,Le(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
432 ("j" ?,Lx(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
433 ("k" ?,LZ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
434 ("l" ?,L[(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
435 (";" ?,Lg(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
436 ("'" ?,L{(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
437 ("\\" ?,LV(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
438 ("z" ?,Lu(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
439 ("x" ?,L(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
440 ("c" ?,Lf(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
441 ("v" ?,LR(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
442 ("b" ?,LQ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
443 ("n" ?,L](B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
444 ("m" ?,L\(B) |
18673 | 445 ("," ?,) |
446 ("." ?.) | |
447 ("/" ?-) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
448 |
18673 | 449 ("!" ?!) |
450 ("@" ?\") | |
451 ("#" ?#) | |
452 ("$" ?$) | |
453 ("%" ?%) | |
454 ("^" ?&) | |
455 ("&" ?') | |
456 ("*" ?\() | |
457 ("(" ?\)) | |
458 (")" ?=) | |
459 ("_" ??) | |
460 ("+" ?*) | |
461 ("~" ?>) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
462 ("Q" ?,L)(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
463 ("W" ?,L*(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
464 ("E" ?,L5(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
465 ("R" ?,L@(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
466 ("T" ?,LB(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
467 ("Y" ?,L7(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
468 ("U" ?,LC(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
469 ("I" ?,L8(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
470 ("O" ?,L>(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
471 ("P" ?,L?(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
472 ("{" ?,LH(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
473 ("}" ?,L"(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
474 ("A" ?,L0(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
475 ("S" ?,LA(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
476 ("D" ?,L4(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
477 ("F" ?,LD(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
478 ("G" ?,L3(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
479 ("H" ?,LE(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
480 ("J" ?,L((B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
481 ("K" ?,L:(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
482 ("L" ?,L;(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
483 (":" ?,LG(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
484 ("\"" ?,L+(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
485 ("|" ?,L6(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
486 ("Z" ?,L%(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
487 ("X" ?,L/(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
488 ("C" ?,LF(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
489 ("V" ?,L2(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
490 ("B" ?,L1(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
491 ("N" ?,L=(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
492 ("M" ?,L<(B) |
18673 | 493 ("<" ?\;) |
494 (">" ?:) | |
495 ("?" ?_)) | |
496 | |
497 ;; | |
498 | |
88730 | 499 ;; Alexander Mikhailian comments: |
500 ;; Having worked for several years as a Belarusian linguist, I still | |
501 ;; can not find the origin of this layout which BTW does include | |
502 ;; several characters that are not present in Belarusian and does not | |
503 ;; include a few ones that do exist in Belarusian. Besides, the typo | |
504 ;; in the name of this layout speaks for itself since Belarusian has | |
505 ;; an outdated version of spelling which is "Byelorussian" and not | |
506 ;; "beylorussian". I suggest that you just remove this layout. | |
18673 | 507 |
88730 | 508 ;; [`derived from JUS.I.K1' according to an old Mule note -- fx] |
509 | |
510 ;; (quail-define-package | |
511 ;; "cyrillic-beylorussian" "Belarussian" ",L6(BB" nil | |
512 ;; ",L)*5@B7(B-,L&.(B BEYLORUSSIAN (ISO 8859-5 encoding)" | |
513 ;; nil t t t t nil nil nil nil nil t) | |
514 | |
515 ;; ;; 1! 2" 3# 4$ 5% 6& 7' 8( 9) 0= /? +* <> | |
516 ;; ;; ,L)(B ,L*(B ,L5(B ,L@(B ,LB(B ,L7(B ,LC(B ,L8(B ,L>(B ,L?(B ,LH(B ,L&(B | |
517 ;; ;; ,L0(B ,LA(B ,L4(B ,LD(B ,L3(B ,LE(B ,L((B ,L:(B ,L;(B ,LG(B ,L.(B ,L6(B | |
518 ;; ;; ,L%(B ,L/(B ,LF(B ,L2(B ,L1(B ,L=(B ,L<(B ,; .: -_ | |
18673 | 519 |
88730 | 520 ;; (quail-define-rules |
521 ;; ("-" ?/) | |
522 ;; ("=" ?+) | |
523 ;; ("`" ?<) | |
524 ;; ("q" ?,Ly(B) | |
525 ;; ("w" ?,Lz(B) | |
526 ;; ("e" ?,LU(B) | |
527 ;; ("r" ?,L`(B) | |
528 ;; ("t" ?,Lb(B) | |
529 ;; ("y" ?,LW(B) | |
530 ;; ("u" ?,Lc(B) | |
531 ;; ("i" ?,LX(B) | |
532 ;; ("o" ?,L^(B) | |
533 ;; ("p" ?,L_(B) | |
534 ;; ("[" ?,Lh(B) | |
535 ;; ("]" ?,Lv(B) | |
536 ;; ("a" ?,LP(B) | |
537 ;; ("s" ?,La(B) | |
538 ;; ("d" ?,LT(B) | |
539 ;; ("f" ?,Ld(B) | |
540 ;; ("g" ?,LS(B) | |
541 ;; ("h" ?,Le(B) | |
542 ;; ("j" ?,Lx(B) | |
543 ;; ("k" ?,LZ(B) | |
544 ;; ("l" ?,L[(B) | |
545 ;; (";" ?,Lg(B) | |
546 ;; ("'" ?,L~(B) | |
547 ;; ("\\" ?,LV(B) | |
548 ;; ("z" ?,Lu(B) | |
549 ;; ("x" ?,L(B) | |
550 ;; ("c" ?,Lf(B) | |
551 ;; ("v" ?,LR(B) | |
552 ;; ("b" ?,LQ(B) | |
553 ;; ("n" ?,L](B) | |
554 ;; ("m" ?,L\(B) | |
555 ;; ("/" ?-) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
556 |
88730 | 557 ;; ("@" ?\") |
558 ;; ("^" ?&) | |
559 ;; ("&" ?') | |
560 ;; ("*" ?\() | |
561 ;; ("(" ?\)) | |
562 ;; (")" ?=) | |
563 ;; ("_" ??) | |
564 ;; ("+" ?*) | |
565 ;; ("~" ?>) | |
566 ;; ("Q" ?,L)(B) | |
567 ;; ("W" ?,L*(B) | |
568 ;; ("E" ?,L5(B) | |
569 ;; ("R" ?,L@(B) | |
570 ;; ("T" ?,LB(B) | |
571 ;; ("Y" ?,L7(B) | |
572 ;; ("U" ?,LC(B) | |
573 ;; ("I" ?,L8(B) | |
574 ;; ("O" ?,L>(B) | |
575 ;; ("P" ?,L?(B) | |
576 ;; ("{" ?,LH(B) | |
577 ;; ("}" ?,L&(B) | |
578 ;; ("A" ?,L0(B) | |
579 ;; ("S" ?,LA(B) | |
580 ;; ("D" ?,L4(B) | |
581 ;; ("F" ?,LD(B) | |
582 ;; ("G" ?,L3(B) | |
583 ;; ("H" ?,LE(B) | |
584 ;; ("J" ?,L((B) | |
585 ;; ("K" ?,L:(B) | |
586 ;; ("L" ?,L;(B) | |
587 ;; (":" ?,LG(B) | |
588 ;; ("\"" ?,L.(B) | |
589 ;; ("|" ?,L6(B) | |
590 ;; ("Z" ?,L%(B) | |
591 ;; ("X" ?,L/(B) | |
592 ;; ("C" ?,LF(B) | |
593 ;; ("V" ?,L2(B) | |
594 ;; ("B" ?,L1(B) | |
595 ;; ("N" ?,L=(B) | |
596 ;; ("M" ?,L<(B) | |
597 ;; ("<" ?\;) | |
598 ;; (">" ?:) | |
599 ;; ("?" ?_)) | |
18673 | 600 |
601 ;; | |
602 | |
88730 | 603 ;; Alexander Mikhailian reports the opinion of fellow Ukrainian |
604 ;; linguist Bogdan Babych <babych@altern.org>: | |
605 ;; He had seen this layout on some oldish systems but that the vast | |
606 ;; majority of the population uses a modified version of the M$ Windows | |
607 ;; layout. In fact, Microsoft shipped for a while a layout that was lacking | |
608 ;; two characters, precisely the "GHE_WITH_UPTURN" and the apostrophe. The | |
609 ;; latest versions of Windows software do have the "GHE_WITH_UPTURN" in the | |
610 ;; ukrainian keyborad layout but the apostrophe is still not there, whereas | |
611 ;; there is one letter, "Cyrillic_YO", not used in ukrainian. Ukrainians | |
612 ;; normally replace the "Cyrillic_YO" by the apostrophe sign and live | |
613 ;; happily with this little change. [See "ukrainian-computer" below.] | |
614 | |
615 ;; Fixme: add GHE_WITH_UPTURN. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
616 (quail-define-package |
42037 | 617 "cyrillic-ukrainian" "Ukrainian" ",L6(BU" nil |
89483 | 618 ",L$'5@B7(B-,L&.(B UKRAINIAN |
18673 | 619 |
46499 | 620 Sorry, but 'ghe with upturn' is not included in ISO 8859-5." |
19722
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
19386
diff
changeset
|
621 nil t t t t nil nil nil nil nil t) |
18673 | 622 |
623 ;; 1! 2" 3# 4$ 5% 6& 7' 8( 9) 0= /? +* <> | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
624 ;; ,L$(B ,L'(B ,L5(B ,L@(B ,LB(B ,L7(B ,LC(B ,L8(B ,L>(B ,L?(B ,LH(B ,L&(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
625 ;; ,L0(B ,LA(B ,L4(B ,LD(B ,L3(B ,LE(B ,L((B ,L:(B ,L;(B ,LG(B ,L.(B ,L6(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
626 ;; ,L%(B ,L/(B ,LF(B ,L2(B ,L1(B ,L=(B ,L<(B ,; .: -_ |
18673 | 627 |
628 (quail-define-rules | |
629 ("1" ?1) | |
630 ("2" ?2) | |
631 ("3" ?3) | |
632 ("4" ?4) | |
633 ("5" ?5) | |
634 ("6" ?6) | |
635 ("7" ?7) | |
636 ("8" ?8) | |
637 ("9" ?9) | |
638 ("0" ?0) | |
639 ("-" ?/) | |
640 ("=" ?+) | |
641 ("`" ?<) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
642 ("q" ?,Lt(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
643 ("w" ?,Lw(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
644 ("e" ?,LU(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
645 ("r" ?,L`(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
646 ("t" ?,Lb(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
647 ("y" ?,LW(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
648 ("u" ?,Lc(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
649 ("i" ?,LX(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
650 ("o" ?,L^(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
651 ("p" ?,L_(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
652 ("[" ?,Lh(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
653 ("]" ?,Lv(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
654 ("a" ?,LP(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
655 ("s" ?,La(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
656 ("d" ?,LT(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
657 ("f" ?,Ld(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
658 ("g" ?,LS(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
659 ("h" ?,Le(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
660 ("j" ?,Lx(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
661 ("k" ?,LZ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
662 ("l" ?,L[(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
663 (";" ?,Lg(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
664 ("'" ?,L~(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
665 ("\\" ?,LV(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
666 ("z" ?,Lu(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
667 ("x" ?,L(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
668 ("c" ?,Lf(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
669 ("v" ?,LR(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
670 ("b" ?,LQ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
671 ("n" ?,L](B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
672 ("m" ?,L\(B) |
18673 | 673 ("," ?,) |
674 ("." ?.) | |
675 ("/" ?-) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
676 |
18673 | 677 ("!" ?!) |
678 ("@" ?\") | |
679 ("#" ?#) | |
680 ("$" ?$) | |
681 ("%" ?%) | |
682 ("^" ?&) | |
683 ("&" ?') | |
684 ("*" ?\() | |
685 ("(" ?\)) | |
686 (")" ?=) | |
687 ("_" ??) | |
688 ("+" ?*) | |
689 ("~" ?>) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
690 ("Q" ?,L$(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
691 ("W" ?,L'(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
692 ("E" ?,L5(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
693 ("R" ?,L@(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
694 ("T" ?,LB(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
695 ("Y" ?,L7(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
696 ("U" ?,LC(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
697 ("I" ?,L8(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
698 ("O" ?,L>(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
699 ("P" ?,L?(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
700 ("{" ?,LH(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
701 ("}" ?,L&(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
702 ("A" ?,L0(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
703 ("S" ?,LA(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
704 ("D" ?,L4(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
705 ("F" ?,LD(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
706 ("G" ?,L3(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
707 ("H" ?,LE(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
708 ("J" ?,L((B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
709 ("K" ?,L:(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
710 ("L" ?,L;(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
711 (":" ?,LG(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
712 ("\"" ?,L.(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
713 ("|" ?,L6(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
714 ("Z" ?,L%(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
715 ("X" ?,L/(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
716 ("C" ?,LF(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
717 ("V" ?,L2(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
718 ("B" ?,L1(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
719 ("N" ?,L=(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
720 ("M" ?,L<(B) |
18673 | 721 ("<" ?\;) |
722 (">" ?:) | |
723 ("?" ?_)) | |
724 | |
88730 | 725 |
726 (quail-define-package | |
727 "ukrainian-computer" "Ukrainian" "UK" nil | |
46499 | 728 "$,1(9(F(C(:(5(=(B Ukrainian (Unicode-based for use with KOI8-U encoding)." |
88730 | 729 nil t t t t nil nil nil nil nil t) |
730 | |
46499 | 731 ;; ' 1! 2" 3$,1uV(B 4; 5% 6: 7? 8* 9( 0) -_ =+ |
732 ;; $,1(9(B $,1(F(B $,1(C(B $,1(:(B $,1(5(B $,1(=(B $,1(3(B $,1(H(B $,1(I(B $,1(7(B $,1(E(B $,1('(B | |
733 ;; $,1(D(B $,1(&(B $,1(2(B $,1(0(B $,1(?(B $,1(@(B $,1(>(B $,1(;(B $,1(4(B $,1(6(B $,1($(B $,1)P(B | |
734 ;; $,1(O(B $,1(G(B $,1(A(B $,1(<(B $,1(8(B $,1(B(B $,1(L(B $,1(1(B $,1(N(B ., | |
88730 | 735 |
736 (quail-define-rules | |
737 ("1" ?1) | |
738 ("2" ?2) | |
739 ("3" ?3) | |
740 ("4" ?4) | |
741 ("5" ?5) | |
742 ("6" ?6) | |
743 ("7" ?7) | |
744 ("8" ?8) | |
745 ("9" ?9) | |
746 ("0" ?0) | |
747 ("-" ?-) | |
748 ("=" ?=) | |
749 ("`" ?') | |
46499 | 750 ("q" ?$,1(Y(B) |
751 ("w" ?$,1(f(B) | |
752 ("e" ?$,1(c(B) | |
753 ("r" ?$,1(Z(B) | |
754 ("t" ?$,1(U(B) | |
755 ("y" ?$,1(](B) | |
756 ("u" ?$,1(S(B) | |
757 ("i" ?$,1(h(B) | |
758 ("o" ?$,1(i(B) | |
759 ("p" ?$,1(W(B) | |
760 ("[" ?$,1(e(B) | |
761 ("]" ?$,1(w(B) | |
762 ("a" ?$,1(d(B) | |
763 ("s" ?$,1(v(B) | |
764 ("d" ?$,1(R(B) | |
765 ("f" ?$,1(P(B) | |
766 ("g" ?$,1(_(B) | |
767 ("h" ?$,1(`(B) | |
768 ("j" ?$,1(^(B) | |
769 ("k" ?$,1([(B) | |
770 ("l" ?$,1(T(B) | |
771 (";" ?$,1(V(B) | |
772 ("'" ?$,1(t(B) | |
773 ("z" ?$,1(o(B) | |
774 ("x" ?$,1(g(B) | |
775 ("c" ?$,1(a(B) | |
776 ("v" ?$,1(\(B) | |
777 ("b" ?$,1(X(B) | |
778 ("n" ?$,1(b(B) | |
779 ("m" ?$,1(l(B) | |
780 ("," ?$,1(Q(B) | |
781 ("." ?$,1(n(B) | |
88730 | 782 ("/" ?.) |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
783 ("!" ?!) |
88730 | 784 ("@" ?\") |
46499 | 785 ("#" ?$,1uV(B) |
88730 | 786 ("$" ?\;) |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
787 ("%" ?%) |
88730 | 788 ("^" ?:) |
789 ("&" ??) | |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
790 ("*" ?*) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
791 ("(" ?() |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
792 (")" ?)) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
793 ("_" ?_) |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
794 ("+" ?+) |
88730 | 795 ("~" ?') |
46499 | 796 ("Q" ?$,1(9(B) |
797 ("W" ?$,1(F(B) | |
798 ("E" ?$,1(C(B) | |
799 ("R" ?$,1(:(B) | |
800 ("T" ?$,1(5(B) | |
801 ("Y" ?$,1(=(B) | |
802 ("U" ?$,1(3(B) | |
803 ("I" ?$,1(H(B) | |
804 ("O" ?$,1(I(B) | |
805 ("P" ?$,1(7(B) | |
806 ("{" ?$,1(E(B) | |
807 ("}" ?$,1('(B) | |
808 ("A" ?$,1(D(B) | |
809 ("S" ?$,1(&(B) | |
810 ("D" ?$,1(2(B) | |
811 ("F" ?$,1(0(B) | |
812 ("G" ?$,1(?(B) | |
813 ("H" ?$,1(@(B) | |
814 ("J" ?$,1(>(B) | |
815 ("K" ?$,1(;(B) | |
816 ("L" ?$,1(4(B) | |
817 (":" ?$,1(6(B) | |
818 ("\"" ?$,1($(B) | |
819 ("Z" ?$,1(O(B) | |
820 ("X" ?$,1(G(B) | |
821 ("C" ?$,1(A(B) | |
822 ("V" ?$,1(<(B) | |
823 ("B" ?$,1(8(B) | |
824 ("N" ?$,1(B(B) | |
825 ("M" ?$,1(L(B) | |
826 ("<" ?$,1(1(B) | |
827 (">" ?$,1(N(B) | |
88730 | 828 ("?" ?,) |
829 ("\\" ?$,1)Q(B) | |
830 ("|" ?$,1)P(B)) | |
18673 | 831 ;; |
832 | |
88730 | 833 ;; Alexander Mikhailian says this is of limited use. It has been |
834 ;; popular among emigrants or foreigners who have to type in Cyrillic | |
835 ;; (mostly Russian) from time to time. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
836 (quail-define-package |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
837 "cyrillic-yawerty" "Cyrillic" ",L6O(B" nil |
89483 | 838 ",LO25@BK(B Roman transcription |
18673 | 839 |
88730 | 840 This layout is based on Roman transcription by phonemic resemblance. |
18673 | 841 When preceded by a '/', the second and the third rows (number key row) change |
842 as follows. | |
843 | |
844 keytop | Q W E R T Y U I O P A S D | |
845 --------+--------------------------------------- | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
846 input | ,L"(B ,L#(B ,L$(B ,L%(B ,L&(B ,L'(B ,L((B ,L)(B ,L*(B ,L+(B ,L,(B ,L.(B ,L/(B" |
19722
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
19386
diff
changeset
|
847 nil t t t t nil nil nil nil nil t) |
18673 | 848 |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
849 ;; 1! 2,Lq(B 3,Lj(B 4,L!(B 5% 6^ 7& 8* 9( 0) -_ ,LG(B ,LN(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
850 ;; ,LO(B ,L2(B ,L5(B ,L@(B ,LB(B ,LK(B ,LC(B ,L8(B ,L>(B ,L?(B ,LH(B ,LI(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
851 ;; ,L0(B ,LA(B ,L4(B ,LD(B ,L3(B ,LE(B ,L9(B ,L:(B ,L;(B ;: '" ,LM(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
852 ;; ,L7(B ,LL(B ,LF(B ,L6(B ,L1(B ,L=(B ,L<(B ,< .> /? |
18673 | 853 |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
854 ;; 1! 2,Lq(B 3,Lj(B 4,L!(B 5% 6^ 7& 8* 9( 0) -_ ,LG(B ,LN(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
855 ;; ,L"(B ,L#(B ,L$(B ,L%(B ,L&(B ,L'(B ,L((B ,L)(B ,L*(B ,L+(B ,LH(B ,LI(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
856 ;; ,L,(B ,L.(B ,L/(B ,LD(B ,L3(B ,LE(B ,L9(B ,L:(B ,L;(B ;: '" ,LM(B |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
857 ;; ,L7(B ,LL(B ,LF(B ,L6(B ,L1(B ,L=(B ,L<(B ,< .> /? |
18673 | 858 |
859 (quail-define-rules | |
860 ("1" ?1) | |
861 ("2" ?2) | |
862 ("3" ?3) | |
863 ("4" ?4) | |
864 ("5" ?5) | |
865 ("6" ?6) | |
866 ("7" ?7) | |
867 ("8" ?8) | |
868 ("9" ?9) | |
869 ("0" ?0) | |
870 ("-" ?-) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
871 ("=" ?,Lg(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
872 ("`" ?,Ln(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
873 ("q" ?,Lo(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
874 ("w" ?,LR(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
875 ("e" ?,LU(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
876 ("r" ?,L`(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
877 ("t" ?,Lb(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
878 ("y" ?,Lk(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
879 ("u" ?,Lc(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
880 ("i" ?,LX(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
881 ("o" ?,L^(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
882 ("p" ?,L_(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
883 ("[" ?,Lh(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
884 ("]" ?,Li(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
885 ("a" ?,LP(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
886 ("s" ?,La(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
887 ("d" ?,LT(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
888 ("f" ?,Ld(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
889 ("g" ?,LS(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
890 ("h" ?,Le(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
891 ("j" ?,LY(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
892 ("k" ?,LZ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
893 ("l" ?,L[(B) |
18673 | 894 (";" ?\;) |
895 ("'" ?') | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
896 ("\\" ?,Lm(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
897 ("z" ?,LW(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
898 ("x" ?,Ll(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
899 ("c" ?,Lf(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
900 ("v" ?,LV(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
901 ("b" ?,LQ(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
902 ("n" ?,L](B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
903 ("m" ?,L\(B) |
18673 | 904 ("," ?,) |
905 ("." ?.) | |
906 ("/" ?/) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
907 |
18673 | 908 ("!" ?!) |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
909 ("@" ?,Lq(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
910 ("#" ?,Lj(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
911 ("$" ?,L!(B) |
18673 | 912 ("%" ?%) |
913 ("^" ?^) | |
914 ("&" ?&) | |
915 ("*" ?*) | |
916 ("(" ?\() | |
917 (")" ?\)) | |
918 ("_" ?_) | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
919 ("+" ?,LG(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
920 ("~" ?,LN(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
921 ("Q" ?,LO(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
922 ("W" ?,L2(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
923 ("E" ?,L5(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
924 ("R" ?,L@(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
925 ("T" ?,LB(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
926 ("Y" ?,LK(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
927 ("U" ?,LC(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
928 ("I" ?,L8(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
929 ("O" ?,L>(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
930 ("P" ?,L?(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
931 ("{" ?,LH(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
932 ("}" ?,LI(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
933 ("A" ?,L0(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
934 ("S" ?,LA(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
935 ("D" ?,L4(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
936 ("F" ?,LD(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
937 ("G" ?,L3(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
938 ("H" ?,LE(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
939 ("J" ?,L9(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
940 ("K" ?,L:(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
941 ("L" ?,L;(B) |
18673 | 942 (":" ?:) |
943 ("\"" ?\") | |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
944 ("|" ?,LM(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
945 ("Z" ?,L7(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
946 ("X" ?,LL(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
947 ("C" ?,LF(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
948 ("V" ?,L6(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
949 ("B" ?,L1(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
950 ("N" ?,L=(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
951 ("M" ?,L<(B) |
18673 | 952 ("<" ?<) |
953 (">" ?>) | |
954 ("?" ??) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
955 |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
956 ("/q" ?,Lr(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
957 ("/w" ?,Ls(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
958 ("/e" ?,Lt(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
959 ("/r" ?,Lu(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
960 ("/t" ?,Lv(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
961 ("/y" ?,Lw(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
962 ("/u" ?,Lx(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
963 ("/i" ?,Ly(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
964 ("/o" ?,Lz(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
965 ("/p" ?,L{(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
966 ("/a" ?,L|(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
967 ("/s" ?,L~(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
968 ("/d" ?,L(B) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
969 |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
970 ("/Q" ?,L"(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
971 ("/W" ?,L#(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
972 ("/E" ?,L$(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
973 ("/R" ?,L%(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
974 ("/T" ?,L&(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
975 ("/Y" ?,L'(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
976 ("/U" ?,L((B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
977 ("/I" ?,L)(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
978 ("/O" ?,L*(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
979 ("/P" ?,L+(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
980 ("/A" ?,L,(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
981 ("/S" ?,L.(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
982 ("/D" ?,L/(B)) |
19070
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
983 |
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
984 ;; This was provided by Valery Alexeev <valery@domovoy.math.uga.edu>. |
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
985 |
88730 | 986 ;; Ognyan Kulev <ogi@fmi.uni-sofia.bg> wrote: |
987 | |
988 ;; I would suggest future `cyrillic-translit' to be with the | |
989 ;; modification of `cyrillic-translit-bulgarian' applied and the | |
990 ;; latter to disappear. It could be used by people who write | |
991 ;; bulgarian e-mails with latin letters for kick start (phonetic input | |
992 ;; method is not so obvious as translit input method but each letter | |
993 ;; is one keypress and a *lot* of people know it). | |
994 | |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
995 ;; Anton Zinoviev <anton@lml.bas.bg> wrote: |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
996 ;; I would say that the main idea for cyrillic-translit is to be |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
997 ;; language-independent and universal. It should be able to generate all |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
998 ;; Cyrillic symbols. |
19070
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
999 (quail-define-package |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1000 "cyrillic-translit" "Cyrillic" ",L6(Bt" nil |
19230
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1001 "Intuitively transliterated keyboard layout. |
88730 | 1002 Most convenient for entering Russian but all Cyrillic characters are included. |
19070
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
1003 Should handle most cases. However: |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1004 for ,Lf(B (TSE) use \"c\", never \"ts\" |
19230
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1005 ,Li(B (SHCHA = Bulgarian SHT) = \"shch\", \"sj\", \"/sht\" or \"/t\", |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1006 ,Lm(B (REVERSE ROUNDED E) = \"e'\" or \"e`\" |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1007 ,Le(B (KHA) when after ,La(B (S) = \"x\" or \"kh\" |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1008 ,Lj(B (HARD SIGN) = \"~\", ,LJ(B (CAPITAL HARD SIGN) = \"~~\", |
19153
6544faf75c9f
(cyrillic-translit): Doc-string of the package
Kenichi Handa <handa@m17n.org>
parents:
19150
diff
changeset
|
1009 ,Ll(B (SOFT SIGN) = \"'\", ,LL(B (CAPITAL SOFT SIGN) = \"''\", |
6544faf75c9f
(cyrillic-translit): Doc-string of the package
Kenichi Handa <handa@m17n.org>
parents:
19150
diff
changeset
|
1010 ,Lo(B (YA) = \"ya\", \"ja\" or \"q\". |
6544faf75c9f
(cyrillic-translit): Doc-string of the package
Kenichi Handa <handa@m17n.org>
parents:
19150
diff
changeset
|
1011 |
6544faf75c9f
(cyrillic-translit): Doc-string of the package
Kenichi Handa <handa@m17n.org>
parents:
19150
diff
changeset
|
1012 Russian alphabet: a b v=w g d e yo=jo zh z i j=j' k l m n o p r s t |
19230
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1013 u f h=kh=x c ch sh shch=sj=/s=/sht ~ y ' e' yu=ju ya=ja=q |
19070
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
1014 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1015 Also included are Ukrainian ,Lt(B (YE) = \"/e\" and ,Lw(B (YI) = \"yi\", |
88730 | 1016 Belarusian ,L~(B (SHORT U) = \"u'\", |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1017 Serbo-Croatian ,Lr(B (DJE) = \"/d\", ,L{(B (CHJE)= \"/ch\", |
19230
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1018 Macedonian ,Ls(B (GJE) = \"/g\", ,Lu(B (DZE) = \"/s\", ,L|(B (KJE) = \"/k\", |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1019 cyrillic ,Lv(B (I DECIMAL) = \"/i\", ,Lx(B (JE) = \"/j\", |
19230
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1020 ,Ly(B (LJE) = \"/l\", ,Lz(B (NJE) = \"/n\" and ,L(B (DZE) =\"/z\"." |
19722
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
19386
diff
changeset
|
1021 nil t t t t nil nil nil nil nil t) |
19070
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
1022 |
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
1023 (quail-define-rules |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1024 ("a" ?,LP(B)("b" ?,LQ(B) ("v" ?,LR(B) ("w" ?,LR(B) ("g" ?,LS(B) ("d" ?,LT(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1025 ("e" ?,LU(B) ("je" ?,LU(B) |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1026 ("yo" ?,Lq(B) ("jo" ?,Lq(B) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1027 ("zh" ?,LV(B) ("z" ?,LW(B) ("i" ?,LX(B) |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1028 ("j" ?,LY(B) ("j'" ?,LY(B) ("j`" ?,LY(B) ("k" ?,LZ(B) ("l" ?,L[(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1029 ("m" ?,L\(B) ("n" ?,L](B) ("o" ?,L^(B) ("p" ?,L_(B) ("r" ?,L`(B) ("s" ?,La(B) ("t" ?,Lb(B) ("u" ?,Lc(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1030 ("f" ?,Ld(B) ("x" ?,Le(B) ("h" ?,Le(B) ("kh" ?,Le(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1031 ("c" ?,Lf(B) ("ch" ?,Lg(B) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1032 ("sh" ?,Lh(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1033 ("shch" ?,Li(B) ("sj" ?,Li(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1034 ("/sht" ?,Li(B) ("/t" ?,Li(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1035 ("~" ?,Lj(B) ("y" ?,Lk(B) ("'" ?,Ll(B) ("`" ?,Ll(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1036 ("e'" ?,Lm(B) ("e`" ?,Lm(B) ("@" ?,Lm(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1037 ("yu" ?,Ln(B) ("ju" ?,Ln(B) |
19153
6544faf75c9f
(cyrillic-translit): Doc-string of the package
Kenichi Handa <handa@m17n.org>
parents:
19150
diff
changeset
|
1038 ("ya" ?,Lo(B) ("ja" ?,Lo(B) ("q" ?,Lo(B) |
19070
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
1039 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1040 ("A" ?,L0(B) ("B" ?,L1(B) ("V" ?,L2(B) ("W" ?,L2(B) ("G" ?,L3(B) ("D" ?,L4(B) |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1041 ("E" ?,L5(B) ("Je" ?,L5(B) ("JE" ?,L5(B) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1042 ("Yo" ?,L!(B) ("YO" ?,L!(B) ("Jo" ?,L!(B) ("JO" ?,L!(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1043 ("Zh" ?,L6(B) ("ZH" ?,L6(B) ("Z" ?,L7(B) ("I" ?,L8(B) |
19150
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1044 ("J" ?,L9(B) ("J'" ?,L9(B) ("J`" ?,L9(B) ("K" ?,L:(B) ("L" ?,L;(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1045 ("M" ?,L<(B) ("N" ?,L=(B) ("O" ?,L>(B) ("P" ?,L?(B) ("R" ?,L@(B) ("S" ?,LA(B) ("T" ?,LB(B) ("U" ?,LC(B) |
b953b98ae007
Move Quail package cyrillic-jis-russian to
Kenichi Handa <handa@m17n.org>
parents:
19077
diff
changeset
|
1046 ("F" ?,LD(B) ("X" ?,LE(B) ("H" ?,LE(B) ("Kh" ?,LE(B) ("KH" ?,LE(B) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1047 ("C" ?,LF(B) ("Ch" ?,LG(B) ("CH" ?,LG(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1048 ("Sh" ?,LH(B) ("SH" ?,LH(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1049 ("Shch" ?,LI(B) ("SHCH" ?,LI(B) ("Sj" ?,LI(B) ("SJ" ?,LI(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1050 ("/Sht" ?,LI(B) ("/SHT" ?,LI(B) ("/T" ?,LI(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1051 ("~~" ",LJ(B") ("Y" ?,LK(B) ("''" ",LL(B") ("E'" ?,LM(B) ("E`" ?,LM(B) |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1052 ("Yu" ?,LN(B) ("YU" ?,LN(B) ("Ju" ?,LN(B) ("JU" ?,LN(B) |
19153
6544faf75c9f
(cyrillic-translit): Doc-string of the package
Kenichi Handa <handa@m17n.org>
parents:
19150
diff
changeset
|
1053 ("Ya" ?,LO(B) ("YA" ?,LO(B) ("Ja" ?,LO(B) ("JA" ?,LO(B) ("Q" ?,LO(B) |
19070
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
1054 |
19230
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1055 ("/e" ?,Lt(B) ("yi" ?,Lw(B) ("u'" ?,L~(B) |
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1056 ("/d" ?,Lr(B) ("/ch" ?,L{(B) |
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1057 ("/g" ?,Ls(B) ("/s" ?,Lu(B) ("/k" ?,L|(B) |
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1058 ("/i" ?,Lv(B) ("/j" ?,Lx(B) ("/l" ?,Ly(B) ("/n" ?,Lz(B) ("/z" ?,L(B) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1059 ("/E" ?,L$(B) ("YE" ?,L$(B) ("Yi" ?,L'(B) ("YI" ?,L'(B) ("U'" ?,L.(B) |
19230
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1060 ("/D" ?,L"(B) ("/Ch" ?,L+(B) ("/CH" ?,L+(B) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46499
diff
changeset
|
1061 ("/G" ?,L#(B) ("/S" ?,L%(B) ("/K" ?,L,(B) |
19230
f18830dec134
(cyrillic-translit): \\ changed to / to
Richard M. Stallman <rms@gnu.org>
parents:
19153
diff
changeset
|
1062 ("/I" ?,L&(B) ("/J" ?,L((B) ("/L" ?,L)(B) ("/N" ?,L*(B) ("/Z" ?,L/(B) |
19070
944ebdc35ee4
(cyrillic-translit): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
18673
diff
changeset
|
1063 ) |
19077 | 1064 |
88730 | 1065 ;; Originally from Yudit's `Belarusian input table according to |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
1066 ;; STB955-94 belarusian standard' (not all) by Alexander Mikhailian |
88730 | 1067 ;; <mikhailian@altern.org>, subsequently amended by AM. |
19386
27eb2e784a5b
(cyrillic-translit-bulgarian): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
19230
diff
changeset
|
1068 (quail-define-package |
88730 | 1069 "belarusian" "Belarusian" "BE" nil |
46499 | 1070 "$,1(9(F(C(:(5(=(B keyboard layout registered as STB955-94 Belarusian standard. |
1071 Unicode based." | |
19722
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
19386
diff
changeset
|
1072 nil t t t t nil nil nil nil nil t) |
19386
27eb2e784a5b
(cyrillic-translit-bulgarian): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
19230
diff
changeset
|
1073 |
46499 | 1074 ;; $,1(q(!(B 1! 2" 3N 4; 5% 6: 7? 8* 9( 0) -_ =+ |
1075 ;; $,1(9(B $,1(F(B $,1(C(B $,1(:(B $,1(5(B $,1(=(B $,1(3(B $,1(H(B $,1(.(B $,1(7(B $,1(E(B ' | |
1076 ;; $,1(D(B $,1(K(B $,1(2(B $,1(0(B $,1(?(B $,1(@(B $,1(>(B $,1(;(B $,1(4(B $,1(6(B $,1(M(B | |
1077 ;; $,1(O(B $,1(G(B $,1(A(B $,1(<(B $,1(&(B $,1(B(B $,1(L(B $,1(1(B $,1(N(B ., | |
88730 | 1078 |
19386
27eb2e784a5b
(cyrillic-translit-bulgarian): New input method.
Richard M. Stallman <rms@gnu.org>
parents:
19230
diff
changeset
|
1079 (quail-define-rules |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1080 ("~" ?$,1(!(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1081 ("@" ?\") |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1082 ("#" ?$,1uV(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1083 ("$" ?\;) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1084 ("%" ?%) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1085 ("^" ?:) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1086 ("&" ??) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1087 ("Q" ?$,1(9(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1088 ("W" ?$,1(F(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1089 ("E" ?$,1(C(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1090 ("R" ?$,1(:(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1091 ("T" ?$,1(5(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1092 ("Y" ?$,1(=(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1093 ("U" ?$,1(3(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1094 ("I" ?$,1(H(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1095 ("O" ?$,1(.(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1096 ("P" ?$,1(7(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1097 ("{" ?$,1(E(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1098 ("}" ?') |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1099 ("A" ?$,1(D(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1100 ("S" ?$,1(K(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1101 ("D" ?$,1(2(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1102 ("F" ?$,1(0(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1103 ("G" ?$,1(?(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1104 ("H" ?$,1(@(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1105 ("J" ?$,1(>(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1106 ("K" ?$,1(;(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1107 ("L" ?$,1(4(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1108 (":" ?$,1(6(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1109 ("\"" ?$,1(M(B) |
88730 | 1110 ("|" ?|) |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1111 ("Z" ?$,1(O(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1112 ("X" ?$,1(G(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1113 ("C" ?$,1(A(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1114 ("V" ?$,1(<(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1115 ("B" ?$,1(&(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1116 ("N" ?$,1(B(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1117 ("M" ?$,1(L(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1118 ("<" ?$,1(1(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1119 (">" ?$,1(N(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1120 ("?" ?,) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1121 |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1122 ("`" ?$,1(q(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1123 ("q" ?$,1(Y(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1124 ("w" ?$,1(f(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1125 ("e" ?$,1(c(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1126 ("r" ?$,1(Z(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1127 ("t" ?$,1(U(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1128 ("y" ?$,1(](B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1129 ("u" ?$,1(S(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1130 ("i" ?$,1(h(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1131 ("o" ?$,1(~(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1132 ("p" ?$,1(W(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1133 ("[" ?$,1(e(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1134 ("]" ?') |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1135 ("a" ?$,1(d(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1136 ("s" ?$,1(k(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1137 ("d" ?$,1(R(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1138 ("f" ?$,1(P(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1139 ("g" ?$,1(_(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1140 ("h" ?$,1(`(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1141 ("j" ?$,1(^(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1142 ("k" ?$,1([(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1143 ("l" ?$,1(T(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1144 (";" ?$,1(V(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1145 ("'" ?$,1(m(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1146 ("z" ?$,1(o(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1147 ("x" ?$,1(g(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1148 ("c" ?$,1(a(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1149 ("v" ?$,1(\(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1150 ("b" ?$,1(v(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1151 ("n" ?$,1(b(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1152 ("m" ?$,1(l(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1153 ("," ?$,1(Q(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1154 ("." ?$,1(n(B) |
88730 | 1155 ("/" ?.)) |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1156 |
42037 | 1157 ;; From `Bulgarian-PHO.kmap for Yudit', Alexander Shopov |
1158 ;; <al_shopov@web.bg>. | |
1159 | |
1160 ;; Extra commentary and the indicator from an independent | |
1161 ;; (cyrillic-iso8859-5) implementation by Ognyan Kulev | |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
1162 ;; <ogi@fmi.uni-sofia.bg> and name changes from Anton Zinoviev |
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
1163 ;; <anton@lml.bas.bg>. |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1164 (quail-define-package |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
1165 "bulgarian-phonetic" "Bulgarian" "$,1(6(1(D(B" |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1166 nil |
46499 | 1167 "Bulgarian Phonetic keyboard layout, producing Unicode. |
42037 | 1168 |
1169 The layout is similar to `cyrillic-translit', but all Bulgarian | |
88730 | 1170 characters are typed with a single key. |
1171 | |
46499 | 1172 Use /& for ,A'(B (Cyrillic paragraph) and /# for $,1uV(B." |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1173 nil t t t t nil nil nil nil nil t) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1174 |
42037 | 1175 ;; $,1(O(B $,1(2(B $,1(5(B $,1(@(B $,1(B(B $,1(J(B $,1(C(B $,1(8(B $,1(>(B $,1(?(B $,1(H(B $,1(I(B |
1176 ;; $,1(0(B $,1(A(B $,1(4(B $,1(D(B $,1(3(B $,1(E(B $,1(9(B $,1(:(B $,1(;(B $,1(G(B | |
1177 ;; $,1(N(B $,1(7(B $,1(L(B $,1(F(B $,1(6(B $,1(1(B $,1(=(B $,1(<(B | |
1178 | |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1179 (quail-define-rules |
88730 | 1180 ("/&" ?,A'(B) |
46499 | 1181 ("/#" ?$,1uV(B) |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1182 ("A" ?$,1(0(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1183 ("B" ?$,1(1(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1184 ("W" ?$,1(2(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1185 ("G" ?$,1(3(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1186 ("D" ?$,1(4(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1187 ("E" ?$,1(5(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1188 ("V" ?$,1(6(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1189 ("Z" ?$,1(7(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1190 ("I" ?$,1(8(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1191 ("J" ?$,1(9(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1192 ("K" ?$,1(:(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1193 ("L" ?$,1(;(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1194 ("M" ?$,1(<(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1195 ("N" ?$,1(=(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1196 ("O" ?$,1(>(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1197 ("P" ?$,1(?(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1198 ("R" ?$,1(@(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1199 ("S" ?$,1(A(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1200 ("T" ?$,1(B(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1201 ("U" ?$,1(C(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1202 ("F" ?$,1(D(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1203 ("H" ?$,1(E(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1204 ("C" ?$,1(F(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1205 ("~" ?$,1(G(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1206 ("{" ?$,1(H(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1207 ("}" ?$,1(I(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1208 ("Y" ?$,1(J(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1209 ("X" ?$,1(L(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1210 ("|" ?$,1(N(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1211 ("Q" ?$,1(O(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1212 ("a" ?$,1(P(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1213 ("b" ?$,1(Q(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1214 ("w" ?$,1(R(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1215 ("g" ?$,1(S(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1216 ("d" ?$,1(T(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1217 ("e" ?$,1(U(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1218 ("v" ?$,1(V(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1219 ("z" ?$,1(W(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1220 ("i" ?$,1(X(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1221 ("j" ?$,1(Y(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1222 ("k" ?$,1(Z(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1223 ("l" ?$,1([(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1224 ("m" ?$,1(\(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1225 ("n" ?$,1(](B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1226 ("o" ?$,1(^(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1227 ("p" ?$,1(_(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1228 ("r" ?$,1(`(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1229 ("s" ?$,1(a(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1230 ("t" ?$,1(b(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1231 ("u" ?$,1(c(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1232 ("f" ?$,1(d(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1233 ("h" ?$,1(e(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1234 ("c" ?$,1(f(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1235 ("`" ?$,1(g(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1236 ("[" ?$,1(h(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1237 ("]" ?$,1(i(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1238 ("y" ?$,1(j(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1239 ("x" ?$,1(l(B) |
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1240 ("\\" ?$,1(n(B) |
46499 | 1241 ("|" ?$,1(N(B) |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1242 ("q" ?$,1(o(B)) |
88730 | 1243 |
1244 ;; Based on an implementation by Ognyan Kulev <ogi@fmi.uni-sofia.bg>. | |
1245 ;; This follows XKB bg. | |
1246 | |
1247 (quail-define-package | |
88941
51e1b1356d0f
Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents:
88730
diff
changeset
|
1248 "bulgarian-bds" "Bulgarian" "$,1(1(4(A(B" nil |
88730 | 1249 "Bulgarian standard keyboard layout (BDS) |
1250 | |
1251 This keyboard layout is standard for Bulgarian typewriters." | |
1252 nil t t t t nil nil nil nil nil t) | |
1253 | |
46499 | 1254 ;; 1! 2? 3+ 4" 5% 6= 7: 8/ 9_ 0$,1uV(B -I .V |
1255 ;; ,$,1(k(B $,1(C(B $,1(5(B $,1(8(B $,1(H(B $,1(I(B $,1(:(B $,1(A(B $,1(4(B $,1(7(B $,1(F(B ;,A'(B | |
1256 ;; $,1(l(B $,1(O(B $,1(0(B $,1(>(B $,1(6(B $,1(3(B $,1(B(B $,1(=(B $,1(2(B $,1(<(B $,1(G(B () | |
1257 ;; $,1(N(B $,1(9(B $,1(J(B $,1(M(B $,1(D(B $,1(E(B $,1(?(B $,1(@(B $,1(;(B $,1(1(B | |
88730 | 1258 |
1259 (quail-define-rules | |
1260 | |
1261 ("1" ?1) ("!" ?!) | |
1262 ("2" ?2) | |
1263 ("@" ??) | |
1264 ("3" ?3) | |
1265 ("#" ?+) | |
1266 ("4" ?4) | |
1267 ("$" ?\") | |
1268 ("5" ?5) ("%" ?%) | |
1269 ("6" ?6) | |
1270 ("^" ?=) | |
1271 ("7" ?7) | |
1272 ("&" ?:) | |
1273 ("8" ?8) | |
1274 ("*" ?/) | |
1275 ("9" ?9) | |
1276 ("(" ?_) | |
1277 ("0" ?0) | |
46499 | 1278 (")" ?$,1uV(B) |
88730 | 1279 ("-" ?-) |
1280 ("_" ?I) | |
1281 ("=" ?.) ("+" ?V) | |
1282 | |
46499 | 1283 ("q" ?,) ("Q" ?$,1(k(B) |
1284 ("w" ?$,1(c(B) ("W" ?$,1(C(B) | |
1285 ("e" ?$,1(U(B) ("E" ?$,1(5(B) | |
1286 ("r" ?$,1(X(B) ("R" ?$,1(8(B) | |
1287 ("t" ?$,1(h(B) ("T" ?$,1(H(B) | |
1288 ("y" ?$,1(i(B) ("Y" ?$,1(I(B) | |
1289 ("u" ?$,1(Z(B) ("U" ?$,1(:(B) | |
1290 ("i" ?$,1(a(B) ("I" ?$,1(A(B) | |
1291 ("o" ?$,1(T(B) ("O" ?$,1(4(B) | |
1292 ("p" ?$,1(W(B) ("P" ?$,1(7(B) | |
1293 ("[" ?$,1(f(B) ("{" ?$,1(F(B) | |
88730 | 1294 ("]" ?\;) |
1295 ("}" ?,A'(B) ;; not in XKB's bg | |
1296 | |
46499 | 1297 ("a" ?$,1(l(B) ("A" ?$,1(L(B) |
1298 ("s" ?$,1(o(B) ("S" ?$,1(O(B) | |
1299 ("d" ?$,1(P(B) ("D" ?$,1(0(B) | |
1300 ("f" ?$,1(^(B) ("F" ?$,1(>(B) | |
1301 ("g" ?$,1(V(B) ("G" ?$,1(6(B) | |
1302 ("h" ?$,1(S(B) ("H" ?$,1(3(B) | |
1303 ("j" ?$,1(b(B) ("J" ?$,1(B(B) | |
1304 ("k" ?$,1(](B) ("K" ?$,1(=(B) | |
1305 ("l" ?$,1(R(B) ("L" ?$,1(2(B) | |
1306 (";" ?$,1(\(B) (":" ?$,1(<(B) | |
1307 ("'" ?$,1(g(B) ("\"" ?$,1(G(B) | |
88730 | 1308 ("`" ?\() ("~" ?\)) |
1309 | |
46499 | 1310 ("z" ?$,1(n(B) ("Z" ?$,1(N(B) |
1311 ("x" ?$,1(Y(B) ("X" ?$,1(9(B) | |
1312 ("c" ?$,1(j(B) ("C" ?$,1(J(B) | |
1313 ("v" ?$,1(m(B) ("V" ?$,1(M(B) | |
1314 ("b" ?$,1(d(B) ("B" ?$,1(D(B) | |
1315 ("n" ?$,1(e(B) ("N" ?$,1(E(B) | |
1316 ("m" ?$,1(_(B) ("M" ?$,1(?(B) | |
1317 ("," ?$,1(`(B) ("<" ?$,1(@(B) | |
1318 ("." ?$,1([(B) (">" ?$,1(;(B) | |
1319 ("/" ?$,1(Q(B) ("?" ?$,1(1(B) | |
1320 ("\\" ?') ("|" ?$,1(K(B)) | |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1321 |
19077 | 1322 ;; Local Variables: |
40706
3384b7d5e4b3
("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents:
38453
diff
changeset
|
1323 ;; coding: iso-2022-7bit |
19077 | 1324 ;; End: |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24947
diff
changeset
|
1325 |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24947
diff
changeset
|
1326 ;;; cyrillic.el ends here |