annotate leim/quail/latin-post.el @ 112403:c81ff7082a9a

src/config.in: shrink slightly * configure.in: Invoke the new gnulib macro gl_ASSERT_NO_GNULIB_TESTS. This makes src/config.in a bit smaller, by removing identifiers like GNULIB_TEST_MKTIME that Emacs does not need. * m4/getopt.m4, m4/gnulib-common.m4, m4/include_next.m4: * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/unistd_h.m4: Sync from gnulib. This removes a few more unnecessary symbols from src/config.in, such as AA_APPLE_UNIVERSAL_BUILD and HAVE_STDDEF_H. * configure, src/config.in: Regenerate.
author Paul Eggert <eggert@cs.ucla.edu>
date Fri, 21 Jan 2011 16:12:10 -0800
parents ef719132ddfa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1 ;;; latin-post.el --- Quail packages for inputting various European characters -*-coding: utf-8;-*-
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
3 ;; Copyright (C) 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
75253
f5f322eb227f Update copyright for years from Emacs 21 to present.
Glenn Morris <rgm@gnu.org>
parents: 74605
diff changeset
4 ;; Free Software Foundation, Inc.
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,
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
6 ;; 2006, 2007, 2008, 2009, 2010, 2011
67657
b94a4bf1aca6 Copyright fixed
Kenichi Handa <handa@m17n.org>
parents: 64083
diff changeset
7 ;; National Institute of Advanced Industrial Science and Technology (AIST)
b94a4bf1aca6 Copyright fixed
Kenichi Handa <handa@m17n.org>
parents: 64083
diff changeset
8 ;; Registration Number H14PRO021
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
9 ;; Copyright (C) 2003
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
10 ;; National Institute of Advanced Industrial Science and Technology (AIST)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
11 ;; Registration Number H13PRO009
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
12
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
13 ;; Keywords: multilingual, input method, latin, i18n
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
14
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
15 ;; This file is part of GNU Emacs.
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
16
94710
4f1fd208c354 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91327
diff changeset
17 ;; GNU Emacs is free software: you can redistribute it and/or modify
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
18 ;; it under the terms of the GNU General Public License as published by
94710
4f1fd208c354 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91327
diff changeset
19 ;; the Free Software Foundation, either version 3 of the License, or
4f1fd208c354 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91327
diff changeset
20 ;; (at your option) any later version.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
21
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
22 ;; GNU Emacs is distributed in the hope that it will be useful,
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
25 ;; GNU General Public License for more details.
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
26
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
27 ;; You should have received a copy of the GNU General Public License
94710
4f1fd208c354 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91327
diff changeset
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
29
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
30 ;; Author: TAKAHASHI Naoto <ntakahas@etl.go.jp>
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
31
38453
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
32 ;;; Commentary:
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
33
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
34 ;;; Code:
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
35
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
36 (require 'quail)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
37
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
38 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
39 "latin-1-postfix" "Latin-1" "1<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
40 "Latin-1 character input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
41
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
42 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
43 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
44 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
45 grave | ` | a` -> à
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
46 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
47 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
48 tilde | ~ | a~ -> ã
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
49 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
50 nordic | / | d/ -> ð t/ -> þ a/ -> å e/ -> æ o/ -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
51 others | / | s/ -> ß ?/ -> ¿ !/ -> ¡ // -> °
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
52 | various | << -> « >> -> » o_ -> º a_ -> ª
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
53
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
54 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
55 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
56
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
57 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
58 ("A`" ?À)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
59 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
60 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
61 ("A~" ?Ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
62 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
63 ("A/" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
64 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
65 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
66 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
67 ("a~" ?ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
68 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
69 ("a/" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
70 ("E`" ?È)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
71 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
72 ("E^" ?Ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
73 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
74 ("E/" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
75 ("e`" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
76 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
77 ("e^" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
78 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
79 ("e/" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
80 ("I`" ?Ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
81 ("i`" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
82 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
83 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
84 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
85 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
86 ("I\"" ?Ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
87 ("i\"" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
88 ("O`" ?Ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
89 ("o`" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
90 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
91 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
92 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
93 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
94 ("O~" ?Õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
95 ("o~" ?õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
96 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
97 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
98 ("O/" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
99 ("o/" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
100 ("U`" ?Ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
101 ("u`" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
102 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
103 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
104 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
105 ("u^" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
106 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
107 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
108 ("Y'" ?Ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
109 ("y'" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
110 ("y\"" ?ÿ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
111 ("D/" ?Ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
112 ("d/" ?ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
113 ("T/" ?Þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
114 ("t/" ?þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
115 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
116 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
117 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
118 ("N~" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
119 ("n~" ?ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
120 ("?/" ?¿)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
121 ("!/" ?¡)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
122 ("<<" ?«)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
123 (">>" ?»)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
124 ("o_" ?º)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
125 ("a_" ?ª)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
126 ("//" ?°)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
127
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
128 ("A``" ["A`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
129 ("A''" ["A'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
130 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
131 ("A~~" ["A~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
132 ("A\"\"" ["A\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
133 ("A//" ["A/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
134 ("a``" ["a`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
135 ("a''" ["a'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
136 ("a^^" ["a^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
137 ("a~~" ["a~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
138 ("a\"\"" ["a\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
139 ("a//" ["a/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
140 ("E``" ["E`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
141 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
142 ("E^^" ["E^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
143 ("E\"\"" ["E\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
144 ("E//" ["E/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
145 ("e``" ["e`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
146 ("e''" ["e'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
147 ("e^^" ["e^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
148 ("e\"\"" ["e\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
149 ("e//" ["e/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
150 ("I``" ["I`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
151 ("i``" ["i`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
152 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
153 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
154 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
155 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
156 ("I\"\"" ["I\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
157 ("i\"\"" ["i\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
158 ("O``" ["O`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
159 ("o``" ["o`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
160 ("O''" ["O'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
161 ("o''" ["o'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
162 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
163 ("o^^" ["o^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
164 ("O~~" ["O~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
165 ("o~~" ["o~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
166 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
167 ("o\"\"" ["o\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
168 ("O//" ["O/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
169 ("o//" ["o/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
170 ("U``" ["U`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
171 ("u``" ["u`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
172 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
173 ("u''" ["u'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
174 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
175 ("u^^" ["u^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
176 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
177 ("u\"\"" ["u\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
178 ("Y''" ["Y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
179 ("y''" ["y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
180 ("y\"\"" ["y\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
181 ("D//" ["D/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
182 ("d//" ["d/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
183 ("T//" ["T/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
184 ("t//" ["t/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
185 ("s//" ["s/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
186 ("C,," ["C,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
187 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
188 ("N~~" ["N~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
189 ("n~~" ["n~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
190 ("?//" ["?/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
191 ("!//" ["!/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
192 ("<<<" ["<<"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
193 (">>>" [">>"])
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
194 ("o__" ["o_"])
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
195 ("a__" ["a_"])
23469
b42bd7e943b8 Many doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 23445
diff changeset
196 ("///" ["//"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
197 )
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
198
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
199 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
200 "latin-2-postfix" "Latin-2" "2<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
201 "Latin-2 character input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
202
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
203 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
204 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
205 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
206 ogonek | , | a, -> ą
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
207 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
208 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
209 breve | ~ | a~ -> ă
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
210 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
211 caron | ~ | c~ -> č
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
212 dbl. acute | : | o: -> ő
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
213 ring | . | u. -> ů
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
214 dot | . | z. -> ż
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
215 stroke | / | d/ -> đ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
216 others | / | s/ -> ß
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
217
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
218 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
219 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
220
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
221 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
222 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
223 ("A," ?Ą)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
224 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
225 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
226 ("A~" ?Ă)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
227 ("C'" ?Ć)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
228 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
229 ("C~" ?Č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
230 ("D/" ?Đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
231 ("D~" ?Ď)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
232 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
233 ("E," ?Ę)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
234 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
235 ("E~" ?Ě)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
236 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
237 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
238 ("L'" ?Ĺ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
239 ("L/" ?Ł)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
240 ("L~" ?Ľ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
241 ("N'" ?Ń)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
242 ("N~" ?Ň)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
243 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
244 ("O:" ?Ő)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
245 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
246 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
247 ("R'" ?Ŕ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
248 ("R~" ?Ř)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
249 ("S'" ?Ś)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
250 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
251 ("S~" ?Š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
252 ("T," ?Ţ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
253 ("T~" ?Ť)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
254 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
255 ("U:" ?Ű)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
256 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
257 ("U." ?Ů)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
258 ("Y'" ?Ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
259 ("Z'" ?Ź)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
260 ("Z." ?Ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
261 ("Z~" ?Ž)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
262 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
263 ("a," ?ą)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
264 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
265 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
266 ("a~" ?ă)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
267 ("c'" ?ć)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
268 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
269 ("c~" ?č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
270 ("d/" ?đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
271 ("d~" ?ď)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
272 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
273 ("e," ?ę)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
274 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
275 ("e~" ?ě)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
276 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
277 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
278 ("l'" ?ĺ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
279 ("l/" ?ł)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
280 ("l~" ?ľ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
281 ("n'" ?ń)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
282 ("n~" ?ň)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
283 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
284 ("o:" ?ő)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
285 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
286 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
287 ("r'" ?ŕ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
288 ("r~" ?ř)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
289 ("s'" ?ś)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
290 ("s," ?ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
291 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
292 ("s~" ?š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
293 ("t," ?ţ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
294 ("t~" ?ť)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
295 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
296 ("u:" ?ű)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
297 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
298 ("u." ?ů)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
299 ("y'" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
300 ("z'" ?ź)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
301 ("z." ?ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
302 ("z~" ?ž)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
303
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
304 ("A''" ["A'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
305 ("A,," ["A,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
306 ("A\"\"" ["A\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
307 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
308 ("A~~" ["A~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
309 ("C''" ["C'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
310 ("C,," ["C,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
311 ("C~~" ["C~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
312 ("D//" ["D/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
313 ("D~~" ["D~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
314 ("E''" ["E'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
315 ("E,," ["E,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
316 ("E\"\"" ["E\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
317 ("E~~" ["E~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
318 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
319 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
320 ("L''" ["L'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
321 ("L//" ["L/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
322 ("L~~" ["L~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
323 ("N''" ["N'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
324 ("N~~" ["N~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
325 ("O''" ["O'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
326 ("O::" ["O:"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
327 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
328 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
329 ("R''" ["R'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
330 ("R~~" ["R~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
331 ("S''" ["S'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
332 ("S,," ["S,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
333 ("S~~" ["S~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
334 ("T,," ["T,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
335 ("T~~" ["T~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
336 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
337 ("U::" ["U:"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
338 ("U\"\"" ["U\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
339 ("U.." ["U."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
340 ("Y''" ["Y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
341 ("Z''" ["Z'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
342 ("Z.." ["Z."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
343 ("Z~~" ["Z~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
344 ("a''" ["a'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
345 ("a,," ["a,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
346 ("a\"\"" ["a\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
347 ("a^^" ["a^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
348 ("a~~" ["a~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
349 ("c''" ["c'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
350 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
351 ("c~~" ["c~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
352 ("d//" ["d/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
353 ("d~~" ["d~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
354 ("e''" ["e'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
355 ("e,," ["e,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
356 ("e\"\"" ["e\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
357 ("e~~" ["e~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
358 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
359 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
360 ("l''" ["l'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
361 ("l//" ["l/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
362 ("l~~" ["l~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
363 ("n''" ["n'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
364 ("n~~" ["n~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
365 ("o''" ["o'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
366 ("o::" ["o:"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
367 ("o\"\"" ["o\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
368 ("o^^" ["o^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
369 ("r''" ["r'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
370 ("r~~" ["r~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
371 ("s''" ["s'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
372 ("s,," ["s,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
373 ("s//" ["s/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
374 ("s~~" ["s~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
375 ("t,," ["t,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
376 ("t~~" ["t~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
377 ("u''" ["u'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
378 ("u::" ["u:"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
379 ("u\"\"" ["u\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
380 ("u.." ["u."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
381 ("y''" ["y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
382 ("z''" ["z'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
383 ("z.." ["z."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
384 ("z~~" ["z~"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
385 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
386
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
387 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
388 "latin-3-postfix" "Latin-3" "3<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
389 "Latin-3 character input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
390
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
391 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
392 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
393 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
394 grave | ` | a` -> à
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
395 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
396 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
397 dot | . | c. -> ċ i. -> ı I. -> İ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
398 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
399 breve | ~ | g~ -> ğ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
400 tilde | ~ | n~ -> ñ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
401 stroke | / | h/ -> ħ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
402 others | / | s/ -> ß
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
403
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
404 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
405 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
406
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
407 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
408 ("A`" ?À)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
409 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
410 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
411 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
412 ("C." ?Ċ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
413 ("C^" ?Ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
414 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
415 ("E`" ?È)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
416 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
417 ("E^" ?Ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
418 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
419 ("G~" ?Ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
420 ("G." ?Ġ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
421 ("G^" ?Ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
422 ("H/" ?Ħ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
423 ("H^" ?Ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
424 ("I." ?İ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
425 ("I`" ?Ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
426 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
427 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
428 ("I\"" ?Ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
429 ("J^" ?Ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
430 ("N~" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
431 ("O`" ?Ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
432 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
433 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
434 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
435 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
436 ("S^" ?Ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
437 ("U`" ?Ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
438 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
439 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
440 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
441 ("U~" ?Ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
442 ("Z." ?Ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
443 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
444 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
445 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
446 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
447 ("c." ?ċ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
448 ("c^" ?ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
449 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
450 ("e`" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
451 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
452 ("e^" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
453 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
454 ("g~" ?ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
455 ("g." ?ġ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
456 ("g^" ?ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
457 ("h/" ?ħ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
458 ("h^" ?ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
459 ("i." ?ı)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
460 ("i`" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
461 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
462 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
463 ("i\"" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
464 ("j^" ?ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
465 ("n~" ?ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
466 ("o`" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
467 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
468 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
469 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
470 ("s," ?ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
471 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
472 ("s^" ?ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
473 ("u`" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
474 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
475 ("u^" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
476 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
477 ("u~" ?ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
478 ("z." ?ż)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
479
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
480 ("A``" ["A`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
481 ("A''" ["A'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
482 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
483 ("A\"\"" ["A\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
484 ("C.." ["C."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
485 ("C^^" ["C^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
486 ("C,," ["C,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
487 ("E``" ["E`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
488 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
489 ("E^^" ["E^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
490 ("E\"\"" ["E\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
491 ("G~~" ["G~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
492 ("G.." ["G."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
493 ("G^^" ["G^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
494 ("H//" ["H/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
495 ("H^^" ["H^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
496 ("I.." ["I."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
497 ("I``" ["I`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
498 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
499 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
500 ("I\"\"" ["I\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
501 ("J^^" ["J^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
502 ("N~~" ["N~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
503 ("O``" ["O`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
504 ("O''" ["O'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
505 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
506 ("O\"\"" ["O\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
507 ("S,," ["S,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
508 ("S^^" ["S^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
509 ("U``" ["U`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
510 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
511 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
512 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
513 ("U~~" ["U~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
514 ("Z.." ["Z."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
515 ("a``" ["a`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
516 ("a''" ["a'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
517 ("a^^" ["a^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
518 ("a\"\"" ["a\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
519 ("c.." ["c."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
520 ("c^^" ["c^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
521 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
522 ("e``" ["e`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
523 ("e''" ["e'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
524 ("e^^" ["e^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
525 ("e\"\"" ["e\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
526 ("g~~" ["g~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
527 ("g.." ["g."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
528 ("g^^" ["g^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
529 ("h//" ["h/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
530 ("h^^" ["h^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
531 ("i.." ["i."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
532 ("i``" ["i`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
533 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
534 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
535 ("i\"\"" ["i\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
536 ("j^^" ["j^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
537 ("n~~" ["n~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
538 ("o``" ["o`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
539 ("o''" ["o'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
540 ("o^^" ["o^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
541 ("o\"\"" ["o\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
542 ("s,," ["s,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
543 ("s//" ["s/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
544 ("s^^" ["s^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
545 ("u``" ["u`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
546 ("u''" ["u'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
547 ("u^^" ["u^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
548 ("u\"\"" ["u\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
549 ("u~~" ["u~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
550 ("z.." ["z."])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
551 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
552
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
553 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
554 "latin-4-postfix" "Latin-4" "4<" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
555 "Latin-4 characters input method with postfix modifiers
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
556
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
557 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
558 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
559 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
560 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
561 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
562 ogonek | , | a, -> ą
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
563 macron | - | a- -> ā
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
564 tilde | ~ | a~ -> ã
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
565 caron | ~ | c~ -> č
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
566 dot | . | e. -> ė
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
567 cedilla | , | k, -> ķ g, -> ģ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
568 stroke | / | d/ -> đ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
569 nordic | / | a/ -> å e/ -> æ o/ -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
570 others | / | s/ -> ß n/ -> ŋ k/ -> ĸ
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
571
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
572 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
573 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
574
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
575 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
576 ("A," ?Ą)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
577 ("A-" ?Ā)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
578 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
579 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
580 ("A~" ?Ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
581 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
582 ("A/" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
583 ("C~" ?Č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
584 ("D/" ?Đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
585 ("E/" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
586 ("E-" ?Ē)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
587 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
588 ("E," ?Ę)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
589 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
590 ("E." ?Ė)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
591 ("G," ?Ģ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
592 ("I~" ?Ĩ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
593 ("I," ?Į)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
594 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
595 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
596 ("I-" ?Ī)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
597 ("K," ?Ķ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
598 ("L," ?Ļ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
599 ("N/" ?Ŋ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
600 ("N," ?Ņ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
601 ("O-" ?Ō)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
602 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
603 ("O~" ?Õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
604 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
605 ("O/" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
606 ("R," ?Ŗ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
607 ("S~" ?Š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
608 ("T/" ?Ŧ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
609 ("U," ?Ų)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
610 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
611 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
612 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
613 ("U~" ?Ũ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
614 ("U-" ?Ū)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
615 ("Z~" ?Ž)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
616 ("a," ?ą)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
617 ("a-" ?ā)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
618 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
619 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
620 ("a~" ?ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
621 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
622 ("a/" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
623 ("c~" ?č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
624 ("d/" ?đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
625 ("e/" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
626 ("e-" ?ē)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
627 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
628 ("e," ?ę)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
629 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
630 ("e." ?ė)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
631 ("g," ?ģ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
632 ("i~" ?ĩ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
633 ("i," ?į)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
634 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
635 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
636 ("i-" ?ī)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
637 ("k/" ?ĸ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
638 ("k," ?ķ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
639 ("l," ?ļ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
640 ("n/" ?ŋ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
641 ("n," ?ņ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
642 ("o-" ?ō)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
643 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
644 ("o~" ?õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
645 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
646 ("o/" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
647 ("r," ?ŗ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
648 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
649 ("s~" ?š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
650 ("t/" ?ŧ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
651 ("u," ?ų)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
652 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
653 ("u^" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
654 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
655 ("u~" ?ũ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
656 ("u-" ?ū)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
657 ("z~" ?ž)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
658
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
659 ("A,," ["A,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
660 ("A--" ["A-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
661 ("A''" ["A'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
662 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
663 ("A~~" ["A~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
664 ("A\"\"" ["A\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
665 ("A//" ["A/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
666 ("C~~" ["C~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
667 ("D//" ["D/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
668 ("E//" ["E/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
669 ("E--" ["E-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
670 ("E''" ["E'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
671 ("E,," ["E,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
672 ("E\"\"" ["E\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
673 ("E.." ["E."])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
674 ("G,," ["G,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
675 ("I~~" ["I~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
676 ("I,," ["I,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
677 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
678 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
679 ("I--" ["I-"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
680 ("K,," ["K,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
681 ("L,," ["L,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
682 ("N//" ["N/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
683 ("N,," ["N,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
684 ("O--" ["O-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
685 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
686 ("O~~" ["O~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
687 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
688 ("O//" ["O/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
689 ("R,," ["R,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
690 ("S~~" ["S~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
691 ("T//" ["T/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
692 ("U,," ["U,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
693 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
694 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
695 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
696 ("U~~" ["U~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
697 ("U--" ["U-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
698 ("Z~~" ["Z~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
699 ("a,," ["a,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
700 ("a--" ["a-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
701 ("a''" ["a'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
702 ("a^^" ["a^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
703 ("a~~" ["a~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
704 ("a\"\"" ["a\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
705 ("a//" ["a/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
706 ("c~~" ["c~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
707 ("d//" ["d/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
708 ("e//" ["e/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
709 ("e--" ["e-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
710 ("e''" ["e'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
711 ("e,," ["e,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
712 ("e\"\"" ["e\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
713 ("e.." ["e."])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
714 ("g,," ["g,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
715 ("i~~" ["i~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
716 ("i,," ["i,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
717 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
718 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
719 ("i--" ["i-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
720 ("k//" ["k/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
721 ("k,," ["k,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
722 ("l,," ["l,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
723 ("n//" ["n/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
724 ("n,," ["n,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
725 ("o--" ["o-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
726 ("o^^" ["o^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
727 ("o~~" ["o~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
728 ("o\"\"" ["o\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
729 ("o//" ["o/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
730 ("r,," ["r,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
731 ("s//" ["s/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
732 ("s~~" ["s~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
733 ("t//" ["t/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
734 ("u,," ["u,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
735 ("u''" ["u'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
736 ("u^^" ["u^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
737 ("u\"\"" ["u\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
738 ("u~~" ["u~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
739 ("u--" ["u-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
740 ("z~~" ["z~"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
741 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
742
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
743 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
744 "latin-5-postfix" "Latin-5" "5<" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
745 "Latin-5 characters input method with postfix modifiers
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
746
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
747 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
748 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
749 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
750 grave | ` | a` -> à
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
751 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
752 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
753 tilde | ~ | a~ -> ã
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
754 breve | ~ | g~ -> ğ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
755 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
756 dot | . | i. -> ı I. -> İ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
757 nordic | / | a/ -> å e/ -> æ o/ -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
758 others | / | s/ -> ß
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
759
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
760 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
761 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
762
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
763 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
764 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
765 ("A/" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
766 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
767 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
768 ("A`" ?À)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
769 ("A~" ?Ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
770 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
771 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
772 ("E/" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
773 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
774 ("E^" ?Ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
775 ("E`" ?È)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
776 ("G~" ?Ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
777 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
778 ("I." ?İ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
779 ("I\"" ?Ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
780 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
781 ("I`" ?Ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
782 ("N~" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
783 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
784 ("O/" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
785 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
786 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
787 ("O`" ?Ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
788 ("O~" ?Õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
789 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
790 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
791 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
792 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
793 ("U`" ?Ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
794 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
795 ("a/" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
796 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
797 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
798 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
799 ("a~" ?ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
800 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
801 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
802 ("e/" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
803 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
804 ("e^" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
805 ("e`" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
806 ("g~" ?ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
807 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
808 ("i." ?ı)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
809 ("i\"" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
810 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
811 ("i`" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
812 ("n~" ?ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
813 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
814 ("o/" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
815 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
816 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
817 ("o`" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
818 ("o~" ?õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
819 ("s," ?ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
820 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
821 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
822 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
823 ("u^" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
824 ("u`" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
825 ("y\"" ?ÿ)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
826
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
827 ("A''" ["A'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
828 ("A//" ["A/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
829 ("A\"\"" ["A\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
830 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
831 ("A``" ["A`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
832 ("A~~" ["A~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
833 ("C,," ["C,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
834 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
835 ("E//" ["E/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
836 ("E\"\"" ["E\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
837 ("E^^" ["E^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
838 ("E``" ["E`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
839 ("G~~" ["G~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
840 ("I''" ["I'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
841 ("I.." ["I."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
842 ("I\"\"" ["I\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
843 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
844 ("I``" ["I`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
845 ("N~~" ["N~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
846 ("O''" ["O'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
847 ("O//" ["O/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
848 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
849 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
850 ("O``" ["O`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
851 ("O~~" ["O~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
852 ("S,," ["S,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
853 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
854 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
855 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
856 ("U``" ["U`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
857 ("a''" ["a'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
858 ("a//" ["a/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
859 ("a\"\"" ["a\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
860 ("a^^" ["a^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
861 ("a``" ["a`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
862 ("a~~" ["a~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
863 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
864 ("e''" ["e'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
865 ("e//" ["e/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
866 ("e\"\"" ["e\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
867 ("e^^" ["e^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
868 ("e``" ["e`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
869 ("g~~" ["g~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
870 ("i''" ["i'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
871 ("i.." ["i."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
872 ("i\"\"" ["i\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
873 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
874 ("i``" ["i`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
875 ("n~~" ["n~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
876 ("o''" ["o'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
877 ("o//" ["o/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
878 ("o\"\"" ["o\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
879 ("o^^" ["o^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
880 ("o``" ["o`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
881 ("o~~" ["o~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
882 ("s,," ["s,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
883 ("s//" ["s/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
884 ("u''" ["u'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
885 ("u\"\"" ["u\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
886 ("u^^" ["u^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
887 ("u``" ["u`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
888 ("y\"\"" ["y\""])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
889 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
890
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
891 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
892 "danish-postfix" "Latin-1" "DA<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
893 "Danish input method (rule: AE -> Æ, OE -> Ø, AA -> Å, E' -> É)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
894
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
895 Doubling the postfix separates the letter and postfix: e.g. aee -> ae
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
896 "
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
897 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
898
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
899 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
900 ("AE" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
901 ("ae" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
902 ("OE" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
903 ("oe" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
904 ("AA" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
905 ("aa" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
906 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
907 ("e'" ?é)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
908
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
909 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
910 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
911 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
912 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
913 ("AAA" ["AA"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
914 ("aaa" ["aa"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
915 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
916 ("e''" ["e'"])
18673
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 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
920 "esperanto-postfix" "Latin-3" "EO<" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
921 "Esperanto input method with postfix modifiers
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
922
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
923 A following ^ or x will produce an accented character,
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
924 e.g. c^ -> ĉ gx -> ĝ u^ -> ŭ.
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
925
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
926 Doubling the postfix separates the letter and postfix,
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
927 e.g. a'' -> a'.
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
928 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
929
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
930 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
931 ("Cx" ?Ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
932 ("C^" ?Ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
933 ("cx" ?ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
934 ("c^" ?ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
935 ("Gx" ?Ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
936 ("G^" ?Ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
937 ("gx" ?ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
938 ("g^" ?ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
939 ("Hx" ?Ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
940 ("H^" ?Ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
941 ("hx" ?ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
942 ("h^" ?ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
943 ("Jx" ?Ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
944 ("J^" ?Ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
945 ("jx" ?ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
946 ("j^" ?ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
947 ("Sx" ?Ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
948 ("S^" ?Ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
949 ("sx" ?ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
950 ("s^" ?ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
951 ("Ux" ?Ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
952 ("U^" ?Ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
953 ("ux" ?ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
954 ("u^" ?ŭ)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
955
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
956 ("Cxx" ["Cx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
957 ("C^^" ["C^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
958 ("cxx" ["cx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
959 ("c^^" ["c^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
960 ("Gxx" ["Gx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
961 ("G^^" ["G^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
962 ("gxx" ["gx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
963 ("g^^" ["g^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
964 ("Hxx" ["Hx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
965 ("H^^" ["H^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
966 ("hxx" ["hx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
967 ("h^^" ["h^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
968 ("Jxx" ["Jx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
969 ("J^^" ["J^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
970 ("jxx" ["jx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
971 ("j^^" ["j^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
972 ("Sxx" ["Sx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
973 ("S^^" ["S^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
974 ("sxx" ["sx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
975 ("s^^" ["s^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
976 ("Uxx" ["Ux"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
977 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
978 ("uxx" ["ux"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
979 ("u^^" ["u^"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
980 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
981
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
982 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
983 "finnish-postfix" "Latin-1" "FI<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
984 "Finnish (Suomi) input method
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
985
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
986 AE -> Ä
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
987 AEE -> AE
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
988 OE -> Ö
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
989 OEE -> OE
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
990 "
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
991 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
992
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
993 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
994 ("AE" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
995 ("ae" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
996 ("OE" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
997 ("oe" ?ö)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
998
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
999 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1000 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1001 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1002 ("oee" ["oe"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1003 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1004
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1005 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1006 "french-postfix" "French" "FR<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1007 "French (Français) input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1008
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1009 ` pour grave, ' pour aigu, ^ pour circonflexe, et \" pour tréma.
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1010 Par exemple: a` -> à e' -> é.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1011
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1012 Ç, «, et » sont produits par C,, <<, et >>.
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1013
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1014 En doublant la frappe des diacritiques, ils s'isoleront de la lettre.
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1015 Par exemple: e'' -> e'
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1016
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1017 <e dans l'o> n'est pas disponible."
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1018 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1019
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1020 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1021 ("A`" ?À)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1022 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1023 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1024 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1025 ("E`" ?È)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1026 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1027 ("E^" ?Ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1028 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1029 ("e`" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1030 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1031 ("e^" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1032 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1033 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1034 ("I\"" ?Ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1035 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1036 ("i\"" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1037 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1038 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1039 ("U`" ?Ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1040 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1041 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1042 ("u`" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1043 ("u^" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1044 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1045 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1046 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1047 ("<<" ?«)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1048 (">>" ?»)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1049
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1050 ("A``" ["A`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1051 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1052 ("a``" ["a`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1053 ("a^^" ["a^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1054 ("E``" ["E`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1055 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1056 ("E^^" ["E^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1057 ("E\"\"" ["E\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1058 ("e``" ["e`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1059 ("e''" ["e'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1060 ("e^^" ["e^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1061 ("e\"\"" ["e\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1062 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1063 ("I\"\"" ["I\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1064 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1065 ("i\"\"" ["i\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1066 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1067 ("o^^" ["o^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1068 ("U``" ["U`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1069 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1070 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1071 ("u``" ["u`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1072 ("u^^" ["u^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1073 ("u\"\"" ["u\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1074 ("C,," ["C,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1075 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1076 ("<<<" ["<<"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1077 (">>>" [">>"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1078 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1079
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1080 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1081 "german-postfix" "German" "DE<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1082 "German (Deutsch) input method
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1083
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1084 ae -> ä
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1085 aee -> ae
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1086 oe -> ö
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1087 oee -> oe
97942
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1088 ue -> ü (not after a/e/q)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1089 uee -> ue
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1090 sz -> ß
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1091 szz -> sz
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1092 "
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1093 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1094
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1095 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1096 ("AE" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1097 ("ae" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1098 ("OE" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1099 ("oe" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1100 ("UE" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1101 ("ue" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1102 ("sz" ?ß)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1103
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1104 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1105 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1106 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1107 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1108 ("UEE" ["UE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1109 ("uee" ["ue"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1110 ("szz" ["sz"])
97942
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1111 ("ge" ["ge"])
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1112 ("eue" ["eue"])
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1113 ("Eue" ["Eue"])
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1114 ("aue" ["aue"])
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1115 ("Aue" ["Aue"])
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1116 ("que" ["que"])
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1117 ("Que" ["Que"])
5158a9326a1c ("german-postfix"): do not translate ue to \"u after a, e or q,
David Reitter <david.reitter@gmail.com>
parents: 94710
diff changeset
1118 )
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1119
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1120 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1121 "icelandic-postfix" "Latin-1" "IS<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1122 "Icelandic (Íslenska) input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1123
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1124 A' -> Á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1125 E' -> É
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1126 I' -> Í
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1127 O' -> Ó
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1128 U' -> Ú
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1129 Y' -> Ý
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1130 AE -> Æ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1131 OE -> Ö
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1132 D/ -> Ð (eth)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1133 T/ -> Þ (thorn)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1134
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1135 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1136 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1137
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1138 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1139 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1140 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1141 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1142 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1143 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1144 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1145 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1146 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1147 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1148 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1149 ("Y'" ?Ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1150 ("y'" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1151 ("AE" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1152 ("ae" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1153 ("OE" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1154 ("oe" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1155 ("D/" ?Ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1156 ("d/" ?ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1157 ("T/" ?Þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1158 ("t/" ?þ)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1159
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1160 ("A''" ["A'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1161 ("a''" ["a'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1162 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1163 ("e''" ["e'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1164 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1165 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1166 ("O''" ["O'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1167 ("o''" ["o'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1168 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1169 ("u''" ["u'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1170 ("Y''" ["Y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1171 ("y''" ["y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1172 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1173 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1174 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1175 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1176 ("D//" ["D/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1177 ("d//" ["d/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1178 ("T//" ["T/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1179 ("t//" ["t/"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1180 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1181
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1182 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1183 "italian-postfix" "Latin-1" "IT<" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1184 "Italian (Italiano) input method with postfix modifiers
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1185
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1186 a` -> à A` -> À e' -> é << -> «
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1187 e` -> è E` -> È E' -> É >> -> »
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1188 i` -> ì I` -> Ì o_ -> º
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1189 o` -> ò O` -> Ò a_ -> ª
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1190 u` -> ù U` -> Ù
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1191
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1192 Typewriter-style italian characters.
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1193
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1194 Doubling the postfix separates the letter and postfix: e.g. a`` -> a`
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1195 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1196
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1197 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1198 ("A`" ?À)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1199 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1200 ("E`" ?È)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1201 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1202 ("e`" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1203 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1204 ("I`" ?Ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1205 ("i`" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1206 ("O`" ?Ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1207 ("o`" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1208 ("U`" ?Ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1209 ("u`" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1210 ("<<" ?«)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1211 (">>" ?»)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1212 ("o_" ?º)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1213 ("a_" ?ª)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1214
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1215 ("A``" ["A`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1216 ("a``" ["a`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1217 ("E``" ["E`"])
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1218 ("E''" ["E'"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1219 ("e``" ["e`"])
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1220 ("e''" ["e'"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1221 ("I``" ["I`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1222 ("i``" ["i`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1223 ("O``" ["O`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1224 ("o``" ["o`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1225 ("U``" ["U`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1226 ("u``" ["u`"])
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1227 ("<<<" ["<<"])
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1228 (">>>" [">>"])
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1229 ("o__" ["o_"])
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1230 ("a__" ["a_"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1231 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1232
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1233 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1234 "norwegian-postfix" "Latin-1" "NO<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1235 "Norwegian (Norsk) input method (rule: AE->Æ OE->Ø AA->Å E'->É)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1236
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1237 Doubling the postfix separates the letter and postfix: e.g. aee -> ae
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1238 "
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1239 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1240
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1241 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1242 ("AE" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1243 ("ae" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1244 ("OE" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1245 ("oe" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1246 ("AA" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1247 ("aa" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1248 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1249 ("e'" ?é)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1250
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1251 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1252 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1253 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1254 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1255 ("AAA" ["AA"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1256 ("aaa" ["aa"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1257 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1258 ("e''" ["e'"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1259 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1260
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1261 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1262 "scandinavian-postfix" "Latin-1" "SC<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1263 "Scandinavian input method with postfix modifiers
79567
a3e3ad21895c ("scandinavian-postfix"): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78308
diff changeset
1264 Supported languages are Swedish, Norwegian, Danish, and Finnish.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1265
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1266 ae -> æ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1267 oe -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1268 aa -> å
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1269 a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1270 o\" -> ö
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1271 e' -> é
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1272
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1273 Doubling the postfix separates the letter and postfix:
23469
b42bd7e943b8 Many doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 23445
diff changeset
1274 aee -> ae o\"\" -> o\" etc.
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1275 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1276
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1277 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1278 ("AE" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1279 ("ae" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1280 ("OE" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1281 ("oe" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1282 ("AA" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1283 ("aa" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1284 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1285 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1286 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1287 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1288 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1289 ("e'" ?é)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1290
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1291 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1292 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1293 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1294 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1295 ("AAA" ["AA"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1296 ("aaa" ["aa"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1297 ("A\"\"" ["A\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1298 ("a\"\"" ["a\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1299 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1300 ("o\"\"" ["o\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1301 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1302 ("e''" ["e'"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1303 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1304
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1305 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1306 "spanish-postfix" "Spanish" "ES<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1307 "Spanish (Español) input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1308
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1309 A' -> Á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1310 E' -> É
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1311 I' -> Í
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1312 O' -> Ó
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1313 U' -> Ú
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1314 N~ -> Ñ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1315 !/ -> ¡
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1316 ?/ -> ¿
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1317
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1318 Doubling the postfix separates the letter and postfix:
23469
b42bd7e943b8 Many doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 23445
diff changeset
1319 a'' -> a' n~~ -> n~, etc.
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1320 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1321
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1322 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1323 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1324 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1325 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1326 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1327 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1328 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1329 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1330 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1331 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1332 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1333 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1334 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1335 ("N~" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1336 ("n~" ?ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1337 ("?/" ?¿)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1338 ("!/" ?¡)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1339
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1340 ("A''" ["A'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1341 ("a''" ["a'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1342 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1343 ("e''" ["e'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1344 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1345 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1346 ("O''" ["O'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1347 ("o''" ["o'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1348 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1349 ("u''" ["u'"])
24430
fa964bcd6d26 ("spanish-postfix"): Add rule U" and u".
Kenichi Handa <handa@m17n.org>
parents: 23469
diff changeset
1350 ("U\"" ["U\""])
fa964bcd6d26 ("spanish-postfix"): Add rule U" and u".
Kenichi Handa <handa@m17n.org>
parents: 23469
diff changeset
1351 ("u\"" ["U\""])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1352 ("N~~" ["N~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1353 ("n~~" ["n~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1354 ("?//" ["?/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1355 ("!//" ["!/"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1356 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1357
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1358 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1359 "swedish-postfix" "Latin-1" "SV<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1360 "Swedish (Svenska) input method (rule: AA -> Å AE -> Ä OE -> Ö E' -> É)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1361
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1362 Doubling the postfix separates the letter and postfix: e.g. aee -> ae
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1363 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1364
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1365 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1366 ("AA" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1367 ("aa" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1368 ("AE" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1369 ("ae" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1370 ("OE" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1371 ("oe" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1372 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1373 ("e'" ?é)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1374
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1375 ("AAA" ["AA"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1376 ("aaa" ["aa"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1377 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1378 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1379 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1380 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1381 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1382 ("e''" ["e'"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1383 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1384
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1385 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1386 "turkish-postfix" "Turkish" "TR<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1387 "Turkish (Türkçe) input method with postfix modifiers.
89398
cc2cac7c9faf ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 89234
diff changeset
1388 turkish-latin-3-postfix is an obsolete alias for turkish-postfix.
25775
f80708f9a5bb ("turkish-latin-3-postfix"): Renamed from
Kenichi Handa <handa@m17n.org>
parents: 24430
diff changeset
1389
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1390 Note for I, ı, İ, i.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1391
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1392 A^ -> Â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1393 C, -> Ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1394 G^ -> Ğ
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1395 I -> I
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1396 i -> ı
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1397 I. -> İ
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1398 i. -> i
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1399 O\" -> Ö
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1400 S, -> Ş
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1401 U\" -> Ü
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1402 U^ -> Û
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1403
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1404 Doubling the postfix separates the letter and postfix: e.g. a^^ -> a^
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1405 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1406
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1407 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1408 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1409 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1410 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1411 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1412 ("G^" ?Ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1413 ("g^" ?ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1414 ("I." ?İ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1415 ("i" ?ı)
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1416 ("i." ?i)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1417 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1418 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1419 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1420 ("s," ?ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1421 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1422 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1423 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1424 ("u^" ?û)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1425
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1426 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1427 ("a^^" ["a^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1428 ("C,," ["C,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1429 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1430 ("G^^" ["G^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1431 ("g^^" ["g^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1432 ("I.." ["I."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1433 ("i" ["i"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1434 ("i.." ["i."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1435 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1436 ("o\"\"" ["o\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1437 ("S,," ["S,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1438 ("s,," ["s,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1439 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1440 ("u\"\"" ["u\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1441 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1442 ("u^^" ["u^"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1443 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1444
89234
bc01e3bbf51a ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 88789
diff changeset
1445 ;; Backwards compatibility.
bc01e3bbf51a ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 88789
diff changeset
1446 (push (cons "turkish-latin-3-postfix"
89398
cc2cac7c9faf ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 89234
diff changeset
1447 (cdr (assoc "turkish-postfix" quail-package-alist)))
cc2cac7c9faf ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 89234
diff changeset
1448 quail-package-alist)
25775
f80708f9a5bb ("turkish-latin-3-postfix"): Renamed from
Kenichi Handa <handa@m17n.org>
parents: 24430
diff changeset
1449
f80708f9a5bb ("turkish-latin-3-postfix"): Renamed from
Kenichi Handa <handa@m17n.org>
parents: 24430
diff changeset
1450 (quail-define-package
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1451 "british" "Latin-1" "£@" t
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1452 "British English input method with Latin-1 character £ (# -> £)"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1453 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1454
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1455 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1456 ("#" [?£ ?#])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1457 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1458
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1459 ;; The following are various quail packages for those who think
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1460 ;; the above are too awkward. Supported languages and their
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1461 ;; package name are:
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1462 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1463 ;; French (frnch, azerty)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1464 ;; Icelandic (iclndc)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1465 ;; Denish (dnsh)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1466 ;; Norwegian (nrwgn)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1467 ;; Swedish (swdsh)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1468 ;; Finnish (fnnsh)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1469 ;; German (grmn)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1470 ;; Italian (itln)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1471 ;; Spanish (spnsh)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1472 ;; Dvorak (dvorak)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1473 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1474 ;;; 92.12.15 created for Mule Ver.0.9.6 by Takahashi N. <ntakahas@etl.go.jp>
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1475 ;;; 92.12.29 modified by Takahashi N. <ntakahas@etl.go.jp>
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1476
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1477 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1478 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1479 "french-keyboard" "French" "FR@" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1480 "French (Français) input method simulating some French keyboard
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1481 <e dans l'o> n'est pas disponible." nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1482
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1483 ;; ê1 é2 è3 ô4 î5 ï6 â7 û8 ù9 à0 -_ ë+ `~
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1484 ;; qQ wW eE rR tT yY uU iI oO pP çÇ ü&
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1485 ;; aA sS dD fF gG hH jJ kK lL ;: '" \|
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1486 ;; zZ xX cC vV bB nN mM ,( .) !?
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1487
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1488 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1489 ("1" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1490 ("2" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1491 ("3" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1492 ("4" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1493 ("5" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1494 ("6" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1495 ("7" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1496 ("8" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1497 ("9" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1498 ("0" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1499 ("=" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1500 ("[" ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1501 ("]" ?ü)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1502
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1503 ("!" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1504 ("@" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1505 ("#" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1506 ("$" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1507 ("%" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1508 ("^" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1509 ("&" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1510 ("*" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1511 ("(" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1512 (")" ?0)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1513 ("{" ?Ç)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1514 ("}" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1515 ("<" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1516 (">" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1517 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1518
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1519 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1520 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1521 "french-azerty" "French" "AZ@" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1522 "French (Français) input method simulating Azerty keyboard
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1523
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1524 Similaire au clavier français de SUN.
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1525 préfixes: ^ pour circonflexe, ¨ pour tréma.
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1526 <e dans l'o> n'est pas disponible." nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1527
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1528 ;; &1 é2 "3 '4 (5 §6 è7 !8 ç9 à0 )° -_ @~
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1529 ;; aA zZ eE rR tT yY uU iI oO pP ^¨ `$
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1530 ;; qQ sS dD fF gG hH jJ kK lL mM ù% *|
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1531 ;; wW xX cC vV bB nN ,? ;. :/ =+
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1532
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1533 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1534 ("1" ?&)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1535 ("2" ?é)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1536 ("3" ?\")
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1537 ("4" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1538 ("5" ?\()
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1539 ("6" ?§)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1540 ("7" ?è)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1541 ("8" ?!)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1542 ("9" ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1543 ("0" ?à)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1544 ("-" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1545 ("=" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1546 ("`" ?@)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1547 ("q" ?a)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1548 ("w" ?z)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1549 ("e" ?e)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1550 ("r" ?r)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1551 ("t" ?t)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1552 ("y" ?y)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1553 ("u" ?u)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1554 ("i" ?i)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1555 ("o" ?o)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1556 ("p" ?p)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1557 ("[" ?^)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1558 ("]" ?`)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1559 ("a" ?q)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1560 ("s" ?s)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1561 ("d" ?d)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1562 ("f" ?f)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1563 ("g" ?g)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1564 ("h" ?h)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1565 ("j" ?j)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1566 ("k" ?k)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1567 ("l" ?l)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1568 (";" ?m)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1569 ("'" ?ù)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1570 ("\\" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1571 ("z" ?w)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1572 ("x" ?x)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1573 ("c" ?c)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1574 ("v" ?v)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1575 ("b" ?b)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1576 ("n" ?n)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1577 ("m" ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1578 ("," ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1579 ("." ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1580 ("/" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1581
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1582 ("!" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1583 ("@" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1584 ("#" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1585 ("$" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1586 ("%" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1587 ("^" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1588 ("&" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1589 ("*" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1590 ("(" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1591 (")" ?0)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1592 ("_" ?°)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1593 ("+" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1594 ("~" ?~)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1595 ("Q" ?A)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1596 ("W" ?Z)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1597 ("E" ?E)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1598 ("R" ?R)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1599 ("T" ?T)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1600 ("Y" ?Y)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1601 ("U" ?U)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1602 ("I" ?I)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1603 ("O" ?O)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1604 ("P" ?P)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1605 ("{" ?¨)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1606 ("}" ?$)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1607 ("A" ?Q)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1608 ("S" ?S)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1609 ("D" ?D)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1610 ("F" ?F)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1611 ("G" ?G)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1612 ("H" ?H)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1613 ("J" ?J)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1614 ("K" ?K)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1615 ("L" ?L)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1616 (":" ?M)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1617 ("\"" ?%)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1618 ("|" ?|)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1619 ("Z" ?W)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1620 ("X" ?X)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1621 ("C" ?C)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1622 ("V" ?V)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1623 ("B" ?B)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1624 ("N" ?N)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1625 ("M" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1626 ("<" ?.)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1627 (">" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1628 ("?" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1629
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1630 ("[q" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1631 ("[e" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1632 ("[i" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1633 ("[o" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1634 ("[u" ?û)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1635
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1636 ("{e" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1637 ("{i" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1638 ("{u" ?ü)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1639
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1640 ("[[" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1641 ("{{" ?¨)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1642 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1643
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1644 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1645 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1646 "icelandic-keyboard" "Latin-1" "IS@" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1647 "Icelandic (Íslenska) input method simulating some Icelandic keyboard
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1648
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1649 Dead accent is right to æ." nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1650
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1651 ;; 1! 2" 3# 4$ 5% 6^ 7& 8* 9( 0) öÖ -_ `~
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1652 ;; qQ wW eE rR tT yY uU iI oO pP ðÐ '?
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1653 ;; aA sS dD fF gG hH jJ kK lL æÆ ´´ +*
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1654 ;; zZ xX cC vV bB nN mM ,; .: þÞ
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1655
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1656 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1657 ("-" ?ö)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1658 ("=" ?-)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1659 ("[" ?ð)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1660 ("]" ?')
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1661 (";" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1662 ("'" ?´)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1663 ("\\" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1664 ("/" ?þ)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1665
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1666 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1667 ("_" ?Ö)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1668 ("+" ?_)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1669 ("{" ?Ð)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1670 ("}" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1671 (":" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1672 ("\"" ?´)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1673 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1674 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1675 (">" ?:)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1676 ("?" ?Þ)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1677
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1678 ("'a" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1679 ("'e" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1680 ("'i" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1681 ("'o" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1682 ("'u" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1683 ("'y" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1684 ("'A" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1685 ("'E" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1686 ("'I" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1687 ("'O" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1688 ("'U" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1689 ("'Y" ?Ý)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1690
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1691 ("''" ?´)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1692 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1693
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1694 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1695 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1696 "danish-keyboard" "Latin-1" "DA@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1697 "Danish input method simulating SUN Danish keyboard"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1698 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1699
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1700 ;; 1! 2" 3# 4¤ 5% 6& 7/ 8( 9) 0= +? ½§ ~^
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1701 ;; qQ wW eE rR tT yY uU iI oO pP åÅ éÉ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1702 ;; aA sS dD fF gG hH jJ kK lL æÆ øØ '*
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1703 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1704
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1705 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1706 ("-" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1707 ("=" ?½)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1708 ("`" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1709 ("[" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1710 ("]" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1711 (";" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1712 ("'" ?ø)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1713 ("\\" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1714 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1715
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1716 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1717 ("$" ?¤)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1718 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1719 ("&" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1720 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1721 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1722 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1723 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1724 ("+" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1725 ("~" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1726 ("{" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1727 ("}" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1728 (":" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1729 ("\"" ?Ø)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1730 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1731 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1732 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1733 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1734 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1735
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1736 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1737 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1738 "norwegian-keyboard" "Latin-1" "NO@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1739 "Norwegian (Norsk) input method simulating SUN Norwegian keyboard"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1740 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1741
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1742 ;; 1! 2" 3# 4¤ 5% 6& 7/ 8( 9) 0= +? |§ ~^
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1743 ;; qQ wW eE rR tT yY uU iI oO pP åÅ éÉ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1744 ;; aA sS dD fF gG hH jJ kK lL øØ æÆ '*
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1745 ;; zZ xX cC vV bB nN mM ,; .: '?
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1746
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1747 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1748 ("-" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1749 ("=" ?|)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1750 ("`" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1751 ("[" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1752 ("]" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1753 (";" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1754 ("'" ?æ)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1755 ("\\" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1756 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1757
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1758 ("!" ?!)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1759 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1760 ("$" ?¤)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1761 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1762 ("&" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1763 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1764 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1765 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1766 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1767 ("+" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1768 ("~" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1769 ("{" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1770 ("}" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1771 (":" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1772 ("\"" ?Æ)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1773 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1774 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1775 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1776 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1777 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1778
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1779 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1780 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1781 "swedish-keyboard" "Latin-1" "SV@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1782 "Swedish (Svenska) input method simulating SUN Swedish/Finnish keyboard"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1783 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1784
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1785 ;; 1! 2" 3# 4¤ 5% 6& 7/ 8( 9) 0= +? §½ ~^
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1786 ;; qQ wW eE rR tT yY uU iI oO pP åÅ éÉ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1787 ;; aA sS dD fF gG hH jJ kK lL öÖ äÄ '*
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1788 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1789
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1790 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1791 ("-" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1792 ("=" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1793 ("`" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1794 ("[" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1795 ("]" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1796 (";" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1797 ("'" ?ä)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1798 ("\\" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1799 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1800
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1801 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1802 ("$" ?¤)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1803 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1804 ("&" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1805 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1806 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1807 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1808 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1809 ("+" ?½)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1810 ("~" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1811 ("{" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1812 ("}" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1813 (":" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1814 ("\"" ?Ä)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1815 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1816 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1817 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1818 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1819 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1820
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1821 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1822 (quail-define-package
36837
54755fa58f05 (finnish-keyboard): Fix a typo.
Eli Zaretskii <eliz@gnu.org>
parents: 25775
diff changeset
1823 "finnish-keyboard" "Latin-1" "FI@" t
54755fa58f05 (finnish-keyboard): Fix a typo.
Eli Zaretskii <eliz@gnu.org>
parents: 25775
diff changeset
1824 "Finnish input method simulating SUN Finnish/Swedish keyboard"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1825 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1826
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1827 ;; 1! 2" 3# 4¤ 5% 6& 7/ 8( 9) 0= +? §½ ~^
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1828 ;; qQ wW eE rR tT yY uU iI oO pP åÅ éÉ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1829 ;; aA sS dD fF gG hH jJ kK lL öÖ äÄ '*
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1830 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1831
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1832 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1833 ("-" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1834 ("=" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1835 ("`" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1836 ("[" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1837 ("]" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1838 (";" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1839 ("'" ?ä)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1840 ("\\" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1841 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1842
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1843 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1844 ("$" ?¤)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1845 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1846 ("&" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1847 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1848 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1849 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1850 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1851 ("+" ?½)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1852 ("~" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1853 ("{" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1854 ("}" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1855 (":" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1856 ("\"" ?Ä)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1857 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1858 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1859 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1860 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1861 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1862
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1863 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1864 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1865 "german" "German" "DE@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1866 "German (Deutsch) input method simulating SUN German keyboard"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1867 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1868
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1869 ;; 1! 2" 3§ 4$ 5% 6& 7/ 8( 9) 0= ß? [{ ]}
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1870 ;; qQ wW eE rR tT zZ uU iI oO pP üÜ +*
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1871 ;; aA sS dD fF gG hH jJ kK lL öÖ äÄ #^
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1872 ;; yY xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1873
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1874 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1875 ("-" ?ß)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1876 ("=" ?\[)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1877 ("`" ?\])
19956
4304c48c29c5 (german): Swap y and z.
Richard M. Stallman <rms@gnu.org>
parents: 19900
diff changeset
1878 ("y" ?z)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1879 ("[" ?ü)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1880 ("]" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1881 (";" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1882 ("'" ?ä)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1883 ("\\" ?#)
19956
4304c48c29c5 (german): Swap y and z.
Richard M. Stallman <rms@gnu.org>
parents: 19900
diff changeset
1884 ("z" ?y)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1885 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1886
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1887 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1888 ("#" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1889 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1890 ("&" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1891 ("*" ?\()
19956
4304c48c29c5 (german): Swap y and z.
Richard M. Stallman <rms@gnu.org>
parents: 19900
diff changeset
1892 ("Y" ?Z)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1893 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1894 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1895 ("_" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1896 ("+" ?{)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1897 ("~" ?})
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1898 ("{" ?Ü)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1899 ("}" ?*)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1900 (":" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1901 ("\"" ?Ä)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1902 ("|" ?^)
19956
4304c48c29c5 (german): Swap y and z.
Richard M. Stallman <rms@gnu.org>
parents: 19900
diff changeset
1903 ("Z" ?Y)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1904 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1905 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1906 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1907 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1908
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1909 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1910 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1911 "italian-keyboard" "Latin-1" "IT@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1912 "Italian (Italiano) input method simulating SUN Italian keyboard"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1913 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1914
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1915 ;; 1! 2" 3£ 4$ 5% 6& 7/ 8( 9) 0= '? ì^ `~
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1916 ;; qQ wW eE rR tT yY uU iI oO pP èé +*
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1917 ;; aA sS dD fF gG hH jJ kK lL òç à° ù§
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1918 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1919
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1920 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1921 ("-" ?')
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1922 ("=" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1923 ("[" ?è)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1924 ("]" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1925 (";" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1926 ("'" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1927 ("\\" ?ù)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1928 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1929
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1930 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1931 ("#" ?£)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1932 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1933 ("&" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1934 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1935 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1936 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1937 ("_" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1938 ("+" ?^)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1939 ("~" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1940 ("{" ?é)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1941 ("}" ?*)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1942 (":" ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1943 ("\"" ?°)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1944 ("|" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1945 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1946 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1947 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1948 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1949
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1950 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1951 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1952 "spanish-keyboard" "Spanish" "ES@" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1953 "Spanish (Español) input method simulating SUN Spanish keyboard"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1954 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1955
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1956 ;; 1! 2" 3· 4$ 5% 6& 7/ 8( 9) 0= '? ¡¿ íÍ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1957 ;; qQ wW eE rR tT yY uU iI oO pP éÉ óÓ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1958 ;; aA sS dD fF gG hH jJ kK lL ñÑ áÁ úÚ
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1959 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1960
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1961 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1962 ("-" ?')
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1963 ("=" ?¡)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1964 ("`" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1965 ("[" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1966 ("]" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1967 (";" ?ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1968 ("'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1969 ("\\" ?ú)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1970 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1971
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1972 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1973 ("#" ?·)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1974 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1975 ("&" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1976 ("*" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1977 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1978 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1979 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1980 ("+" ?¿)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1981 ("~" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1982 ("{" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1983 ("}" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1984 (":" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1985 ("\"" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1986 ("|" ?Ú)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1987 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1988 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1989 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1990 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1991
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1992 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1993 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1994 "english-dvorak" "English" "DV@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1995 "English (ASCII) input method simulating Dvorak keyboard"
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1996 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1997
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1998 ;; 1! 2@ 3# 4$ 5% 6^ 7& 8* 9( 0) [{ ]} `~
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1999 ;; '" ,< .> pP yY fF gG cC rR lL /? =+
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2000 ;; aA oO eE uU iI dD hH tT nN sS -_ \|
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2001 ;; ;: qQ jJ kK xX bB mM wW vV zZ
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2002
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2003 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2004 ("-" ?\[)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2005 ("=" ?\])
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2006 ("`" ?`)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2007 ("q" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2008 ("w" ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2009 ("e" ?.)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2010 ("r" ?p)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2011 ("t" ?y)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2012 ("y" ?f)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2013 ("u" ?g)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2014 ("i" ?c)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2015 ("o" ?r)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2016 ("p" ?l)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2017 ("[" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2018 ("]" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2019 ("a" ?a)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2020 ("s" ?o)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2021 ("d" ?e)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2022 ("f" ?u)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2023 ("g" ?i)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2024 ("h" ?d)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2025 ("j" ?h)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2026 ("k" ?t)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2027 ("l" ?n)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2028 (";" ?s)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2029 ("'" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2030 ("\\" ?\\)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2031 ("z" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2032 ("x" ?q)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2033 ("c" ?j)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2034 ("v" ?k)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2035 ("b" ?x)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2036 ("n" ?b)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2037 ("m" ?m)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2038 ("," ?w)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2039 ("." ?v)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2040 ("/" ?z)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2041
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2042 ("_" ?{)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2043 ("+" ?})
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2044 ("~" ?~)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2045 ("Q" ?\")
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2046 ("W" ?<)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2047 ("E" ?>)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2048 ("R" ?P)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2049 ("T" ?Y)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2050 ("Y" ?F)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2051 ("U" ?G)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2052 ("I" ?C)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2053 ("O" ?R)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2054 ("P" ?L)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2055 ("{" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2056 ("}" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2057 ("A" ?A)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2058 ("S" ?O)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2059 ("D" ?E)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2060 ("F" ?U)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2061 ("G" ?I)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2062 ("H" ?D)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2063 ("J" ?H)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2064 ("K" ?T)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2065 ("L" ?N)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2066 (":" ?S)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2067 ("\"" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2068 ("|" ?|)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2069 ("Z" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2070 ("X" ?Q)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2071 ("C" ?J)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2072 ("V" ?K)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2073 ("B" ?X)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2074 ("N" ?B)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2075 ("M" ?M)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2076 ("<" ?W)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2077 (">" ?V)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2078 ("?" ?Z)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2079 )
38453
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
2080
46668
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2081 (quail-define-package
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2082 "latin-postfix" "Latin" "L<" t
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2083 "Latin character input method with postfix modifiers.
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2084 This is the union of various input methods originally made for input
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2085 of characters from a single Latin-N charset.
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2086
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2087 | postfix | examples
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2088 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2089 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2090 grave | ` | a` -> à
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2091 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2092 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2093 tilde | ~ | a~ -> ã
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2094 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2095 ogonek | , | a, -> ą
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2096 breve | ~ | a~ -> ă
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2097 caron | ~ | c~ -> č
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2098 dbl. acute | : | o: -> ő
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2099 ring | . | u. -> ů
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2100 dot | . | z. -> ż
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2101 stroke | / | d/ -> đ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2102 nordic | / | d/ -> ð t/ -> þ a/ -> å e/ -> æ o/ -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2103 others | / | s/ -> ß ?/ -> ¿ !/ -> ¡ // -> °
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2104 | various | << -> « >> -> » o_ -> º a_ -> ª
46668
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2105
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2106 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2107 " nil t nil nil nil nil nil nil nil nil t)
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2108
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2109 ;; Fixme: ¦ § ¨ © ¬ ­ ® ¯ ± ² ³ ´ µ ¶ · ¸ ¹ ¼ ½ ¾ × ÷
46668
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2110 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2111 (" _" ? )
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2112 ("!/" ?¡)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2113 ("//" ?°)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2114 ("<<" ?\«)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2115 (">>" ?\»)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2116 ("?/" ?¿)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2117 ("$/" ?£)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2118 ("$/" ?¤)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2119 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2120 ("A," ?Ą)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2121 ("A-" ?Ā)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2122 ("A/" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2123 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2124 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2125 ("A`" ?À)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2126 ("A~" ?Ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2127 ("A~" ?Ă)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2128 ("C'" ?Ć)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2129 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2130 ("C." ?Ċ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2131 ("C^" ?Ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2132 ("C~" ?Č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2133 ("D/" ?Ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2134 ("D/" ?Đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2135 ("D~" ?Ď)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2136 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2137 ("E," ?Ę)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2138 ("E-" ?Ē)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2139 ("E." ?Ė)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2140 ("E/" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2141 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2142 ("E^" ?Ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2143 ("E`" ?È)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2144 ("E~" ?Ě)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2145 ("G," ?Ģ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2146 ("G." ?Ġ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2147 ("G^" ?Ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2148 ("G~" ?Ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2149 ("H/" ?Ħ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2150 ("H^" ?Ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2151 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2152 ("I," ?Į)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2153 ("I-" ?Ī)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2154 ("I." ?İ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2155 ("I\"" ?Ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2156 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2157 ("I`" ?Ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2158 ("I~" ?Ĩ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2159 ("J^" ?Ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2160 ("K," ?Ķ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2161 ("L'" ?Ĺ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2162 ("L," ?Ļ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2163 ("L/" ?Ł)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2164 ("L~" ?Ľ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2165 ("N'" ?Ń)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2166 ("N," ?Ņ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2167 ("N/" ?Ŋ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2168 ("N~" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2169 ("N~" ?Ň)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2170 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2171 ("O-" ?Ō)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2172 ("O/" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2173 ("O/" ?Œ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2174 ("O:" ?Ő)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2175 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2176 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2177 ("O`" ?Ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2178 ("O~" ?Õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2179 ("R'" ?Ŕ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2180 ("R," ?Ŗ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2181 ("R~" ?Ř)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2182 ("S'" ?Ś)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2183 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2184 ("S^" ?Ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2185 ("S~" ?Š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2186 ("T," ?Ţ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2187 ("T/" ?Þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2188 ("T/" ?Ŧ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2189 ("T~" ?Ť)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2190 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2191 ("U," ?Ų)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2192 ("U-" ?Ū)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2193 ("U." ?Ů)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2194 ("U:" ?Ű)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2195 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2196 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2197 ("U`" ?Ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2198 ("U~" ?Ũ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2199 ("U~" ?Ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2200 ("Y'" ?Ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2201 ("Y\"" ?Ÿ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2202 ("Y=" ?¥)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2203 ("Z'" ?Ź)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2204 ("Z." ?Ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2205 ("Z~" ?Ž)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2206 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2207 ("a," ?ą)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2208 ("a-" ?ā)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2209 ("a/" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2210 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2211 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2212 ("a_" ?ª)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2213 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2214 ("a~" ?ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2215 ("a~" ?ă)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2216 ("c'" ?ć)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2217 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2218 ("c." ?ċ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2219 ("c^" ?ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2220 ("c~" ?č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2221 ("c/" ?¢)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2222 ("d/" ?ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2223 ("d/" ?đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2224 ("d~" ?ď)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2225 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2226 ("e," ?ę)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2227 ("e-" ?ē)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2228 ("e." ?ė)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2229 ("e/" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2230 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2231 ("e^" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2232 ("e`" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2233 ("e~" ?ě)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2234 ("e=" ?€)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2235 ("g," ?ģ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2236 ("g." ?ġ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2237 ("g^" ?ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2238 ("g~" ?ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2239 ("h/" ?ħ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2240 ("h^" ?ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2241 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2242 ("i," ?į)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2243 ("i-" ?ī)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2244 ("i." ?ı)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2245 ("i\"" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2246 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2247 ("i`" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2248 ("i~" ?ĩ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2249 ("j^" ?ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2250 ("k," ?ķ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2251 ("k/" ?ĸ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2252 ("l'" ?ĺ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2253 ("l," ?ļ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2254 ("l/" ?ł)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2255 ("l~" ?ľ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2256 ("n'" ?ń)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2257 ("n," ?ņ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2258 ("n/" ?ŋ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2259 ("n~" ?ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2260 ("n~" ?ň)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2261 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2262 ("o-" ?ō)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2263 ("o/" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2264 ("o/" ?œ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2265 ("o:" ?ő)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2266 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2267 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2268 ("o_" ?º)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2269 ("o`" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2270 ("o~" ?õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2271 ("r'" ?ŕ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2272 ("r," ?ŗ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2273 ("r~" ?ř)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2274 ("s'" ?ś)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2275 ("s," ?ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2276 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2277 ("s^" ?ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2278 ("s~" ?š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2279 ("t," ?ţ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2280 ("t/" ?þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2281 ("t/" ?ŧ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2282 ("t~" ?ť)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2283 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2284 ("u," ?ų)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2285 ("u-" ?ū)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2286 ("u." ?ů)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2287 ("u:" ?ű)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2288 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2289 ("u^" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2290 ("u`" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2291 ("u~" ?ũ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2292 ("u~" ?ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2293 ("y'" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2294 ("y\"" ?ÿ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2295 ("z'" ?ź)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2296 ("z." ?ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2297 ("z~" ?ž)
46668
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2298
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2299 ("!//" ["!/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2300 ("///" ["//"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2301 ("<<<" ["<<"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2302 (">>>" [">>"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2303 ("?//" ["?/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2304 ("$//" ["$/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2305 ("A''" ["A'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2306 ("A,," ["A,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2307 ("A--" ["A-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2308 ("A//" ["A/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2309 ("A\"\"" ["A\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2310 ("A^^" ["A^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2311 ("A``" ["A`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2312 ("A~~" ["A~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2313 ("C''" ["C'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2314 ("C,," ["C,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2315 ("C.." ["C."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2316 ("C^^" ["C^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2317 ("C~~" ["C~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2318 ("D//" ["D/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2319 ("D~~" ["D~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2320 ("E''" ["E'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2321 ("E,," ["E,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2322 ("E--" ["E-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2323 ("E.." ["E."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2324 ("E//" ["E/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2325 ("E\"\"" ["E\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2326 ("E^^" ["E^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2327 ("E``" ["E`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2328 ("E~~" ["E~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2329 ("G,," ["G,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2330 ("G.." ["G."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2331 ("G^^" ["G^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2332 ("G~~" ["G~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2333 ("H//" ["H/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2334 ("H^^" ["H^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2335 ("I''" ["I'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2336 ("I,," ["I,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2337 ("I--" ["I-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2338 ("I.." ["I."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2339 ("I\"\"" ["I\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2340 ("I^^" ["I^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2341 ("I``" ["I`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2342 ("I~~" ["I~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2343 ("J^^" ["J^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2344 ("K,," ["K,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2345 ("L''" ["L'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2346 ("L,," ["L,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2347 ("L//" ["L/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2348 ("L~~" ["L~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2349 ("N''" ["N'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2350 ("N,," ["N,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2351 ("N//" ["N/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2352 ("N~~" ["N~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2353 ("O''" ["O'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2354 ("O--" ["O-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2355 ("O//" ["O/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2356 ("O::" ["O:"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2357 ("O\"\"" ["O\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2358 ("O^^" ["O^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2359 ("O``" ["O`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2360 ("O~~" ["O~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2361 ("R''" ["R'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2362 ("R,," ["R,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2363 ("R~~" ["R~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2364 ("S''" ["S'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2365 ("S,," ["S,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2366 ("S^^" ["S^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2367 ("S~~" ["S~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2368 ("T,," ["T,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2369 ("T//" ["T/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2370 ("T~~" ["T~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2371 ("U''" ["U'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2372 ("U,," ["U,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2373 ("U--" ["U-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2374 ("U.." ["U."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2375 ("U::" ["U:"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2376 ("U\"\"" ["U\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2377 ("U^^" ["U^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2378 ("U``" ["U`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2379 ("U~~" ["U~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2380 ("Y''" ["Y'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2381 ("Y\"\"" ["Y\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2382 ("Y==" ["Y="])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2383 ("Z''" ["Z'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2384 ("Z.." ["Z."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2385 ("Z~~" ["Z~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2386 ("a''" ["a'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2387 ("a,," ["a,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2388 ("a--" ["a-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2389 ("a//" ["a/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2390 ("a\"\"" ["a\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2391 ("a^^" ["a^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2392 ("a__" ["a_"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2393 ("a``" ["a`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2394 ("a~~" ["a~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2395 ("c''" ["c'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2396 ("c,," ["c,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2397 ("c.." ["c."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2398 ("c^^" ["c^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2399 ("c~~" ["c~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2400 ("c//" ["c/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2401 ("d//" ["d/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2402 ("d~~" ["d~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2403 ("e''" ["e'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2404 ("e,," ["e,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2405 ("e--" ["e-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2406 ("e.." ["e."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2407 ("e//" ["e/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2408 ("e\"\"" ["e\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2409 ("e^^" ["e^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2410 ("e``" ["e`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2411 ("e==" ["e="])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2412 ("e~~" ["e~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2413 ("g,," ["g,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2414 ("g.." ["g."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2415 ("g^^" ["g^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2416 ("g~~" ["g~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2417 ("h//" ["h/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2418 ("h^^" ["h^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2419 ("i''" ["i'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2420 ("i,," ["i,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2421 ("i--" ["i-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2422 ("i.." ["i."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2423 ("i\"\"" ["i\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2424 ("i^^" ["i^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2425 ("i``" ["i`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2426 ("i~~" ["i~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2427 ("j^^" ["j^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2428 ("k,," ["k,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2429 ("k//" ["k/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2430 ("l''" ["l'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2431 ("l,," ["l,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2432 ("l//" ["l/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2433 ("l~~" ["l~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2434 ("n''" ["n'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2435 ("n,," ["n,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2436 ("n//" ["n/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2437 ("n~~" ["n~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2438 ("o''" ["o'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2439 ("o--" ["o-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2440 ("o//" ["o/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2441 ("o::" ["o:"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2442 ("o\"\"" ["o\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2443 ("o^^" ["o^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2444 ("o__" ["o_"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2445 ("o``" ["o`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2446 ("o~~" ["o~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2447 ("r''" ["r'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2448 ("r,," ["r,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2449 ("r~~" ["r~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2450 ("s''" ["s'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2451 ("s,," ["s,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2452 ("s//" ["s/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2453 ("s^^" ["s^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2454 ("s~~" ["s~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2455 ("t,," ["t,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2456 ("t//" ["t/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2457 ("t~~" ["t~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2458 ("u''" ["u'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2459 ("u,," ["u,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2460 ("u--" ["u-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2461 ("u.." ["u."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2462 ("u::" ["u:"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2463 ("u\"\"" ["u\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2464 ("u^^" ["u^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2465 ("u``" ["u`"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2466 ("u~~" ["u~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2467 ("y''" ["y'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2468 ("y\"\"" ["y\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2469 ("z''" ["z'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2470 ("z.." ["z."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2471 ("z~~" ["z~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2472 )
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2473
47413
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2474 ;; Derived from Slovenian.kmap from Yudit
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2475 ;; attributed as: 2001-11-11 Roman Maurer <roman.maurer@amis.net>
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2476 (quail-define-package
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2477 "slovenian" "Slovenian" "Sl" t
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2478 "Slovenian postfix input."
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2479 nil t t t nil nil nil nil nil nil t)
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2480
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2481 (quail-define-rules
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2482 ("C<" ?Č)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2483 ("C'" ?Ć)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2484 ("D;" ?Đ)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2485 ("S<" ?Š)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2486 ("Z<" ?Ž)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2487 ("c<" ?č)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2488 ("c'" ?ć)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2489 ("d;" ?đ)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2490 ("s<" ?š)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2491 ("z<" ?ž))
47413
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2492
38453
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
2493 ;;; latin-post.el ends here