annotate leim/quail/cyrillic.el @ 89804:109e674576b8

(CHAR_CHARSET_P): Fix for the case that the method is subset or superset.
author Kenichi Handa <handa@m17n.org>
date Fri, 06 Feb 2004 11:05:20 +0000
parents 2f877ed80fa6
children 68c22ea6027c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
3 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
4 ;; Licensed to the Free Software Foundation.
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
5 ;; Copyright (C) 2001, 2002 Free Software Foundation, Inc.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
6
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
7 ;; Author: TAKAHASHI Naoto <ntakahas@m17n.org>
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
8 ;; Keywords: multilingual, input method, Cyrillic, i18n
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
9
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
10 ;; This file is part of GNU Emacs.
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
11
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
15 ;; any later version.
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
16
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
20 ;; GNU General Public License for more details.
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
21
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
25 ;; Boston, MA 02111-1307, USA.
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
29 ;; These methods use a mixture of 8859-5 and Unicode. Quail, used
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
30 ;; with ucs-tables provides suport for translating on the fly to
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
31 ;; what's appropriate for aa buffer's file coding system, so the
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
32 ;; encoding shouldn't matter too much provided it supports the
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
33 ;; necessary characters.
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
34
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
35 ;;; Code:
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
36
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
37 (require 'quail)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
38
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
39 ;; This was `cyrillic-jcuken'. Alexander Mikhailian
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
40 ;; <mikhailian@altern.org> says: "cyrillic-jcuken" is actually
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
41 ;; russian. It is ok but a bit outdated. This layout has been used
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
42 ;; in typewriters for ages but it has been superceeded on desktops by
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
43 ;; a variation of this layout, implemented in M$ Windows software.
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
44 ;; The Windows layout is greatly preferred because of the comma and
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
45 ;; period being placed more conviniently and, of course, because of
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
46 ;; the popularity of Windows software. This layout is a common option
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
47 ;; in X Windows and console layouts for GNU/Linux. [See
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
48 ;; `russian-computer' below.]
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
58
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
59 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
60 ("1" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
61 ("2" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
62 ("3" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
63 ("4" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
64 ("5" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
65 ("6" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
66 ("7" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
67 ("8" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
68 ("9" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
69 ("0" ?0)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
70 ("-" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
106 ("/" ?/)
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46499
diff changeset
107
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
112 ("%" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
113 ("^" ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
114 ("&" ?.)
24947
4f788869cb29 (cyrillic-jcuken): Use X11 keyboard layout.
Richard M. Stallman <rms@gnu.org>
parents: 19722
diff changeset
115 ("*" ?\;)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
116 ("(" ?\()
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
117 (")" ?\))
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
118 ("_" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
275 ("?" ?,))
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
276
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46499
diff changeset
277 ;; Mikhailian couldn't check the next two.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
278
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
279 ;; This seems to have the same layout for letters as mk in XKB, but at
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
280 ;; least the top row is different.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
285
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
290
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
291 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
292 ("1" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
293 ("2" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
294 ("3" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
295 ("4" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
296 ("5" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
297 ("6" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
298 ("7" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
299 ("8" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
300 ("9" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
301 ("0" ?0)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
302 ("-" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
303 ("=" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
336 ("," ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
337 ("." ?.)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
338 ("/" ?-)
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46499
diff changeset
339
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
340 ("!" ?!)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
341 ("@" ?\")
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
342 ("#" ?#)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
343 ("$" ?$)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
344 ("%" ?%)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
345 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
346 ("&" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
347 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
348 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
349 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
350 ("_" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
351 ("+" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
384 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
385 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
386 ("?" ?_))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
387
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
388 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
389
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
394
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
399
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
400 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
401 ("1" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
402 ("2" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
403 ("3" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
404 ("4" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
405 ("5" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
406 ("6" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
407 ("7" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
408 ("8" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
409 ("9" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
410 ("0" ?0)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
411 ("-" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
412 ("=" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
445 ("," ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
446 ("." ?.)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
447 ("/" ?-)
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46499
diff changeset
448
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
449 ("!" ?!)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
450 ("@" ?\")
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
451 ("#" ?#)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
452 ("$" ?$)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
453 ("%" ?%)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
454 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
455 ("&" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
456 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
457 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
458 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
459 ("_" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
460 ("+" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
493 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
494 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
495 ("?" ?_))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
496
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
497 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
498
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
499 ;; Alexander Mikhailian comments:
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
500 ;; Having worked for several years as a Belarusian linguist, I still
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
501 ;; can not find the origin of this layout which BTW does include
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
502 ;; several characters that are not present in Belarusian and does not
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
503 ;; include a few ones that do exist in Belarusian. Besides, the typo
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
504 ;; in the name of this layout speaks for itself since Belarusian has
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
505 ;; an outdated version of spelling which is "Byelorussian" and not
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
506 ;; "beylorussian". I suggest that you just remove this layout.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
507
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
508 ;; [`derived from JUS.I.K1' according to an old Mule note -- fx]
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
509
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
510 ;; (quail-define-package
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
511 ;; "cyrillic-beylorussian" "Belarussian" ",L6(BB" nil
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
512 ;; ",L)*5@B7(B-,L&.(B BEYLORUSSIAN (ISO 8859-5 encoding)"
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
513 ;; nil t t t t nil nil nil nil nil t)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
514
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
515 ;; ;; 1! 2" 3# 4$ 5% 6& 7' 8( 9) 0= /? +* <>
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
518 ;; ;; ,L%(B ,L/(B ,LF(B ,L2(B ,L1(B ,L=(B ,L<(B ,; .: -_
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
519
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
520 ;; (quail-define-rules
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
521 ;; ("-" ?/)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
522 ;; ("=" ?+)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
523 ;; ("`" ?<)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
524 ;; ("q" ?,Ly(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
525 ;; ("w" ?,Lz(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
526 ;; ("e" ?,LU(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
527 ;; ("r" ?,L`(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
528 ;; ("t" ?,Lb(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
529 ;; ("y" ?,LW(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
530 ;; ("u" ?,Lc(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
531 ;; ("i" ?,LX(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
532 ;; ("o" ?,L^(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
533 ;; ("p" ?,L_(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
534 ;; ("[" ?,Lh(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
535 ;; ("]" ?,Lv(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
536 ;; ("a" ?,LP(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
537 ;; ("s" ?,La(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
538 ;; ("d" ?,LT(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
539 ;; ("f" ?,Ld(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
540 ;; ("g" ?,LS(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
541 ;; ("h" ?,Le(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
542 ;; ("j" ?,Lx(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
543 ;; ("k" ?,LZ(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
544 ;; ("l" ?,L[(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
545 ;; (";" ?,Lg(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
546 ;; ("'" ?,L~(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
547 ;; ("\\" ?,LV(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
548 ;; ("z" ?,Lu(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
549 ;; ("x" ?,L(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
550 ;; ("c" ?,Lf(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
551 ;; ("v" ?,LR(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
552 ;; ("b" ?,LQ(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
553 ;; ("n" ?,L](B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
554 ;; ("m" ?,L\(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
555 ;; ("/" ?-)
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46499
diff changeset
556
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
557 ;; ("@" ?\")
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
558 ;; ("^" ?&)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
559 ;; ("&" ?')
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
560 ;; ("*" ?\()
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
561 ;; ("(" ?\))
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
562 ;; (")" ?=)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
563 ;; ("_" ??)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
564 ;; ("+" ?*)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
565 ;; ("~" ?>)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
566 ;; ("Q" ?,L)(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
567 ;; ("W" ?,L*(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
568 ;; ("E" ?,L5(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
569 ;; ("R" ?,L@(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
570 ;; ("T" ?,LB(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
571 ;; ("Y" ?,L7(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
572 ;; ("U" ?,LC(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
573 ;; ("I" ?,L8(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
574 ;; ("O" ?,L>(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
575 ;; ("P" ?,L?(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
576 ;; ("{" ?,LH(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
577 ;; ("}" ?,L&(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
578 ;; ("A" ?,L0(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
579 ;; ("S" ?,LA(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
580 ;; ("D" ?,L4(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
581 ;; ("F" ?,LD(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
582 ;; ("G" ?,L3(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
583 ;; ("H" ?,LE(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
584 ;; ("J" ?,L((B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
585 ;; ("K" ?,L:(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
586 ;; ("L" ?,L;(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
587 ;; (":" ?,LG(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
588 ;; ("\"" ?,L.(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
589 ;; ("|" ?,L6(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
590 ;; ("Z" ?,L%(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
591 ;; ("X" ?,L/(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
592 ;; ("C" ?,LF(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
593 ;; ("V" ?,L2(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
594 ;; ("B" ?,L1(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
595 ;; ("N" ?,L=(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
596 ;; ("M" ?,L<(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
597 ;; ("<" ?\;)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
598 ;; (">" ?:)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
599 ;; ("?" ?_))
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
600
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
601 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
602
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
603 ;; Alexander Mikhailian reports the opinion of fellow Ukrainian
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
604 ;; linguist Bogdan Babych <babych@altern.org>:
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
605 ;; He had seen this layout on some oldish systems but that the vast
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
606 ;; majority of the population uses a modified version of the M$ Windows
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
607 ;; layout. In fact, Microsoft shipped for a while a layout that was lacking
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
608 ;; two characters, precisely the "GHE_WITH_UPTURN" and the apostrophe. The
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
609 ;; latest versions of Windows software do have the "GHE_WITH_UPTURN" in the
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
610 ;; ukrainian keyborad layout but the apostrophe is still not there, whereas
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
611 ;; there is one letter, "Cyrillic_YO", not used in ukrainian. Ukrainians
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
612 ;; normally replace the "Cyrillic_YO" by the apostrophe sign and live
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
613 ;; happily with this little change. [See "ukrainian-computer" below.]
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
614
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
617 "cyrillic-ukrainian" "Ukrainian" ",L6(BU" nil
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89395
diff changeset
618 ",L$'5@B7(B-,L&.(B UKRAINIAN
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
619
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
622
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
627
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
628 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
629 ("1" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
630 ("2" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
631 ("3" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
632 ("4" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
633 ("5" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
634 ("6" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
635 ("7" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
636 ("8" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
637 ("9" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
638 ("0" ?0)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
639 ("-" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
640 ("=" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
673 ("," ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
674 ("." ?.)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
675 ("/" ?-)
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46499
diff changeset
676
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
677 ("!" ?!)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
678 ("@" ?\")
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
679 ("#" ?#)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
680 ("$" ?$)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
681 ("%" ?%)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
682 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
683 ("&" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
684 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
685 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
686 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
687 ("_" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
688 ("+" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
721 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
722 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
723 ("?" ?_))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
724
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
725
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
726 (quail-define-package
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
727 "ukrainian-computer" "Ukrainian" "UK" nil
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
728 "$,1(9(F(C(:(5(=(B Ukrainian (Unicode-based for use with KOI8-U encoding)."
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
729 nil t t t t nil nil nil nil nil t)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
730
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
731 ;; ' 1! 2" 3$,1uV(B 4; 5% 6: 7? 8* 9( 0) -_ =+
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
735
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
736 (quail-define-rules
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
737 ("1" ?1)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
738 ("2" ?2)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
739 ("3" ?3)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
740 ("4" ?4)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
741 ("5" ?5)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
742 ("6" ?6)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
743 ("7" ?7)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
744 ("8" ?8)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
745 ("9" ?9)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
746 ("0" ?0)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
747 ("-" ?-)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
748 ("=" ?=)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
749 ("`" ?')
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
750 ("q" ?$,1(Y(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
751 ("w" ?$,1(f(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
752 ("e" ?$,1(c(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
753 ("r" ?$,1(Z(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
754 ("t" ?$,1(U(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
755 ("y" ?$,1(](B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
756 ("u" ?$,1(S(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
757 ("i" ?$,1(h(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
758 ("o" ?$,1(i(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
759 ("p" ?$,1(W(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
760 ("[" ?$,1(e(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
761 ("]" ?$,1(w(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
762 ("a" ?$,1(d(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
763 ("s" ?$,1(v(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
764 ("d" ?$,1(R(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
765 ("f" ?$,1(P(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
766 ("g" ?$,1(_(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
767 ("h" ?$,1(`(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
768 ("j" ?$,1(^(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
769 ("k" ?$,1([(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
770 ("l" ?$,1(T(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
771 (";" ?$,1(V(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
772 ("'" ?$,1(t(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
773 ("z" ?$,1(o(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
774 ("x" ?$,1(g(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
775 ("c" ?$,1(a(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
776 ("v" ?$,1(\(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
777 ("b" ?$,1(X(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
778 ("n" ?$,1(b(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
779 ("m" ?$,1(l(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
780 ("," ?$,1(Q(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
781 ("." ?$,1(n(B)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
782 ("/" ?.)
88941
51e1b1356d0f Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents: 88730
diff changeset
783 ("!" ?!)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
784 ("@" ?\")
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
785 ("#" ?$,1uV(B)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
786 ("$" ?\;)
88941
51e1b1356d0f Reinstate some commented-out redundancies.
Dave Love <fx@gnu.org>
parents: 88730
diff changeset
787 ("%" ?%)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
788 ("^" ?:)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
795 ("~" ?')
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
796 ("Q" ?$,1(9(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
797 ("W" ?$,1(F(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
798 ("E" ?$,1(C(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
799 ("R" ?$,1(:(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
800 ("T" ?$,1(5(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
801 ("Y" ?$,1(=(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
802 ("U" ?$,1(3(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
803 ("I" ?$,1(H(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
804 ("O" ?$,1(I(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
805 ("P" ?$,1(7(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
806 ("{" ?$,1(E(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
807 ("}" ?$,1('(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
808 ("A" ?$,1(D(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
809 ("S" ?$,1(&(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
810 ("D" ?$,1(2(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
811 ("F" ?$,1(0(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
812 ("G" ?$,1(?(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
813 ("H" ?$,1(@(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
814 ("J" ?$,1(>(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
815 ("K" ?$,1(;(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
816 ("L" ?$,1(4(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
817 (":" ?$,1(6(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
818 ("\"" ?$,1($(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
819 ("Z" ?$,1(O(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
820 ("X" ?$,1(G(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
821 ("C" ?$,1(A(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
822 ("V" ?$,1(<(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
823 ("B" ?$,1(8(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
824 ("N" ?$,1(B(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
825 ("M" ?$,1(L(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
826 ("<" ?$,1(1(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
827 (">" ?$,1(N(B)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
828 ("?" ?,)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
829 ("\\" ?$,1)Q(B)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
830 ("|" ?$,1)P(B))
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
831 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
832
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
833 ;; Alexander Mikhailian says this is of limited use. It has been
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
834 ;; popular among emigrants or foreigners who have to type in Cyrillic
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89395
diff changeset
838 ",LO25@BK(B Roman transcription
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
839
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
840 This layout is based on Roman transcription by phonemic resemblance.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
841 When preceded by a '/', the second and the third rows (number key row) change
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
842 as follows.
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
843
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
844 keytop | Q W E R T Y U I O P A S D
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
858
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
859 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
860 ("1" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
861 ("2" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
862 ("3" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
863 ("4" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
864 ("5" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
865 ("6" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
866 ("7" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
867 ("8" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
868 ("9" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
869 ("0" ?0)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
894 (";" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
904 ("," ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
905 ("." ?.)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
906 ("/" ?/)
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46499
diff changeset
907
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
912 ("%" ?%)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
913 ("^" ?^)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
914 ("&" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
915 ("*" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
916 ("(" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
917 (")" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
942 (":" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
952 ("<" ?<)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
953 (">" ?>)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
986 ;; Ognyan Kulev <ogi@fmi.uni-sofia.bg> wrote:
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
987
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
988 ;; I would suggest future `cyrillic-translit' to be with the
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
989 ;; modification of `cyrillic-translit-bulgarian' applied and the
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
990 ;; latter to disappear. It could be used by people who write
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
991 ;; bulgarian e-mails with latin letters for kick start (phonetic input
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
992 ;; method is not so obvious as translit input method but each letter
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
993 ;; is one keypress and a *lot* of people know it).
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
a4d58e619dfa Fix up coding system.
Richard M. Stallman <rms@gnu.org>
parents: 19070
diff changeset
1064
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1069 "belarusian" "Belarusian" "BE" nil
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1070 "$,1(9(F(C(:(5(=(B keyboard layout registered as STB955-94 Belarusian standard.
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1074 ;; $,1(q(!(B 1! 2" 3N 4; 5% 6: 7? 8* 9( 0) -_ =+
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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 '
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1155 ("/" ?.))
40706
3384b7d5e4b3 ("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents: 38453
diff changeset
1156
42037
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
1157 ;; From `Bulgarian-PHO.kmap for Yudit', Alexander Shopov
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
1158 ;; <al_shopov@web.bg>.
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
1159
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
1160 ;; Extra commentary and the indicator from an independent
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1167 "Bulgarian Phonetic keyboard layout, producing Unicode.
42037
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
1168
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
1169 The layout is similar to `cyrillic-translit', but all Bulgarian
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1170 characters are typed with a single key.
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1171
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
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
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
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
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
1177 ;; $,1(N(B $,1(7(B $,1(L(B $,1(F(B $,1(6(B $,1(1(B $,1(=(B $,1(<(B
f031c6af72ac ("cyrillic-beylorussian")
Dave Love <fx@gnu.org>
parents: 40719
diff changeset
1178
40706
3384b7d5e4b3 ("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents: 38453
diff changeset
1179 (quail-define-rules
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1180 ("/&" ?,A'(B)
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1243
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1244 ;; Based on an implementation by Ognyan Kulev <ogi@fmi.uni-sofia.bg>.
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1245 ;; This follows XKB bg.
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1246
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1249 "Bulgarian standard keyboard layout (BDS)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1250
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1251 This keyboard layout is standard for Bulgarian typewriters."
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1252 nil t t t t nil nil nil nil nil t)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1253
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1254 ;; 1! 2? 3+ 4" 5% 6= 7: 8/ 9_ 0$,1uV(B -I .V
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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 ()
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
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
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1258
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1259 (quail-define-rules
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1260
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1261 ("1" ?1) ("!" ?!)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1262 ("2" ?2)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1263 ("@" ??)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1264 ("3" ?3)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1265 ("#" ?+)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1266 ("4" ?4)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1267 ("$" ?\")
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1268 ("5" ?5) ("%" ?%)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1269 ("6" ?6)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1270 ("^" ?=)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1271 ("7" ?7)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1272 ("&" ?:)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1273 ("8" ?8)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1274 ("*" ?/)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1275 ("9" ?9)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1276 ("(" ?_)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1277 ("0" ?0)
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1278 (")" ?$,1uV(B)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1279 ("-" ?-)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1280 ("_" ?I)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1281 ("=" ?.) ("+" ?V)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1282
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1283 ("q" ?,) ("Q" ?$,1(k(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1284 ("w" ?$,1(c(B) ("W" ?$,1(C(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1285 ("e" ?$,1(U(B) ("E" ?$,1(5(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1286 ("r" ?$,1(X(B) ("R" ?$,1(8(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1287 ("t" ?$,1(h(B) ("T" ?$,1(H(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1288 ("y" ?$,1(i(B) ("Y" ?$,1(I(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1289 ("u" ?$,1(Z(B) ("U" ?$,1(:(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1290 ("i" ?$,1(a(B) ("I" ?$,1(A(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1291 ("o" ?$,1(T(B) ("O" ?$,1(4(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1292 ("p" ?$,1(W(B) ("P" ?$,1(7(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1293 ("[" ?$,1(f(B) ("{" ?$,1(F(B)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1294 ("]" ?\;)
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1295 ("}" ?,A'(B) ;; not in XKB's bg
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1296
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1297 ("a" ?$,1(l(B) ("A" ?$,1(L(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1298 ("s" ?$,1(o(B) ("S" ?$,1(O(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1299 ("d" ?$,1(P(B) ("D" ?$,1(0(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1300 ("f" ?$,1(^(B) ("F" ?$,1(>(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1301 ("g" ?$,1(V(B) ("G" ?$,1(6(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1302 ("h" ?$,1(S(B) ("H" ?$,1(3(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1303 ("j" ?$,1(b(B) ("J" ?$,1(B(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1304 ("k" ?$,1(](B) ("K" ?$,1(=(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1305 ("l" ?$,1(R(B) ("L" ?$,1(2(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1306 (";" ?$,1(\(B) (":" ?$,1(<(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1307 ("'" ?$,1(g(B) ("\"" ?$,1(G(B)
88730
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1308 ("`" ?\() ("~" ?\))
e8a87739b67a Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1309
46499
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1310 ("z" ?$,1(n(B) ("Z" ?$,1(N(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1311 ("x" ?$,1(Y(B) ("X" ?$,1(9(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1312 ("c" ?$,1(j(B) ("C" ?$,1(J(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1313 ("v" ?$,1(m(B) ("V" ?$,1(M(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1314 ("b" ?$,1(d(B) ("B" ?$,1(D(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1315 ("n" ?$,1(e(B) ("N" ?$,1(E(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1316 ("m" ?$,1(_(B) ("M" ?$,1(?(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1317 ("," ?$,1(`(B) ("<" ?$,1(@(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1318 ("." ?$,1([(B) (">" ?$,1(;(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1319 ("/" ?$,1(Q(B) ("?" ?$,1(1(B)
c97319502b83 Doc fixes.
Dave Love <fx@gnu.org>
parents: 42504
diff changeset
1320 ("\\" ?') ("|" ?$,1(K(B))
40706
3384b7d5e4b3 ("bulgarian-pho", "belarusian"): New methods.
Dave Love <fx@gnu.org>
parents: 38453
diff changeset
1321
19077
a4d58e619dfa Fix up coding system.
Richard M. Stallman <rms@gnu.org>
parents: 19070
diff changeset
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
a4d58e619dfa Fix up coding system.
Richard M. Stallman <rms@gnu.org>
parents: 19070
diff changeset
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