annotate leim/quail/cyrillic.el @ 79597:cfa45835a9e5

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