annotate leim/quail/cyrillic.el @ 94710:4f1fd208c354

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