annotate leim/quail/latin-post.el @ 93165:c4dc2a72d555

(vc-status-mark-buffer-changed): Add an optional file parameter. (vc-resynch-buffer): Use it. (vc-delete-file): Expand the file name before using it. Be careful to not create a new buffer with the old file contents. Update the VC state after performing the operation.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sun, 23 Mar 2008 21:05:32 +0000
parents 606f2d163a64
children 4f1fd208c354
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
79727
3ca83a726835 Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 79567
diff changeset
3 ;; Copyright (C) 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
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,
79727
3ca83a726835 Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 79567
diff changeset
6 ;; 2006, 2007, 2008
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
17 ;; GNU Emacs is free software; you can redistribute it and/or modify
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
78308
126deea128b3 Restore comma mistakenly removed in last change.
Glenn Morris <rgm@gnu.org>
parents: 78303
diff changeset
19 ;; the Free Software Foundation; either version 3, or (at your option)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
20 ;; any later version.
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
28 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64083
23a17af379b1 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 52401
diff changeset
29 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23a17af379b1 Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 52401
diff changeset
30 ;; Boston, MA 02110-1301, USA.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
31
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
32 ;; Author: TAKAHASHI Naoto <ntakahas@etl.go.jp>
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
33
38453
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
34 ;;; Commentary:
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
35
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
36 ;;; Code:
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
37
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
38 (require 'quail)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
39
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
40 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
41 "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
42 "Latin-1 character input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
43
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
44 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
45 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
46 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
47 grave | ` | a` -> à
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
48 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
49 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
50 tilde | ~ | a~ -> ã
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
51 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
52 nordic | / | d/ -> ð t/ -> þ a/ -> å e/ -> æ o/ -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
53 others | / | s/ -> ß ?/ -> ¿ !/ -> ¡ // -> °
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
54 | various | << -> « >> -> » o_ -> º a_ -> ª
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
55
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
56 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
57 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
58
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
59 (quail-define-rules
88789
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 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
71 ("a/" ?å)
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 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
81 ("e/" ?æ)
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 ("I\"" ?Ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
89 ("i\"" ?ï)
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 ("O/" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
101 ("o/" ?ø)
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 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
109 ("u\"" ?ü)
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 ("y'" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
112 ("y\"" ?ÿ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
113 ("D/" ?Ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
114 ("d/" ?ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
115 ("T/" ?Þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
116 ("t/" ?þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
117 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
118 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
119 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
120 ("N~" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
121 ("n~" ?ñ)
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 ("<<" ?«)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
125 (">>" ?»)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
126 ("o_" ?º)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
127 ("a_" ?ª)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
128 ("//" ?°)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
129
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 ("a\"\"" ["a\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
141 ("a//" ["a/"])
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 ("e\"\"" ["e\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
151 ("e//" ["e/"])
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 ("I\"\"" ["I\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
159 ("i\"\"" ["i\""])
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 ("O//" ["O/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
171 ("o//" ["o/"])
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 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
179 ("u\"\"" ["u\""])
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 ("y''" ["y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
182 ("y\"\"" ["y\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
183 ("D//" ["D/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
184 ("d//" ["d/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
185 ("T//" ["T/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
186 ("t//" ["t/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
187 ("s//" ["s/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
188 ("C,," ["C,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
189 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
190 ("N~~" ["N~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
191 ("n~~" ["n~"])
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 ("!//" ["!/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
194 ("<<<" ["<<"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
195 (">>>" [">>"])
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
196 ("o__" ["o_"])
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
197 ("a__" ["a_"])
23469
b42bd7e943b8 Many doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 23445
diff changeset
198 ("///" ["//"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
199 )
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
200
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
201 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
202 "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
203 "Latin-2 character input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
204
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
205 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
206 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
207 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
208 ogonek | , | a, -> ą
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
209 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
210 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
211 breve | ~ | a~ -> ă
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
212 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
213 caron | ~ | c~ -> č
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
214 dbl. acute | : | o: -> ő
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
215 ring | . | u. -> ů
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
216 dot | . | z. -> ż
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
217 stroke | / | d/ -> đ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
218 others | / | s/ -> ß
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
219
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
220 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
221 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
222
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
223 (quail-define-rules
88789
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 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
228 ("A~" ?Ă)
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 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
231 ("C~" ?Č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
232 ("D/" ?Đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
233 ("D~" ?Ď)
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 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
237 ("E~" ?Ě)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
238 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
239 ("I^" ?Î)
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 ("L/" ?Ł)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
242 ("L~" ?Ľ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
243 ("N'" ?Ń)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
244 ("N~" ?Ň)
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 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
248 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
249 ("R'" ?Ŕ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
250 ("R~" ?Ř)
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 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
253 ("S~" ?Š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
254 ("T," ?Ţ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
255 ("T~" ?Ť)
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 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
259 ("U." ?Ů)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
260 ("Y'" ?Ý)
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 ("Z." ?Ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
263 ("Z~" ?Ž)
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 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
268 ("a~" ?ă)
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 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
271 ("c~" ?č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
272 ("d/" ?đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
273 ("d~" ?ď)
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 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
277 ("e~" ?ě)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
278 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
279 ("i^" ?î)
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 ("l/" ?ł)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
282 ("l~" ?ľ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
283 ("n'" ?ń)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
284 ("n~" ?ň)
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 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
288 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
289 ("r'" ?ŕ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
290 ("r~" ?ř)
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 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
294 ("s~" ?š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
295 ("t," ?ţ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
296 ("t~" ?ť)
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 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
300 ("u." ?ů)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
301 ("y'" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
302 ("z'" ?ź)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
303 ("z." ?ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
304 ("z~" ?ž)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
305
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
306 ("A''" ["A'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
307 ("A,," ["A,"])
19671
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 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
310 ("A~~" ["A~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
311 ("C''" ["C'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
312 ("C,," ["C,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
313 ("C~~" ["C~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
314 ("D//" ["D/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
315 ("D~~" ["D~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
316 ("E''" ["E'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
317 ("E,," ["E,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
318 ("E\"\"" ["E\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
319 ("E~~" ["E~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
320 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
321 ("I^^" ["I^"])
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 ("L//" ["L/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
324 ("L~~" ["L~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
325 ("N''" ["N'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
326 ("N~~" ["N~"])
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 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
330 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
331 ("R''" ["R'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
332 ("R~~" ["R~"])
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 ("S,," ["S,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
335 ("S~~" ["S~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
336 ("T,," ["T,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
337 ("T~~" ["T~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
338 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
339 ("U::" ["U:"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
340 ("U\"\"" ["U\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
341 ("U.." ["U."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
342 ("Y''" ["Y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
343 ("Z''" ["Z'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
344 ("Z.." ["Z."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
345 ("Z~~" ["Z~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
346 ("a''" ["a'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
347 ("a,," ["a,"])
19671
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 ("a^^" ["a^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
350 ("a~~" ["a~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
351 ("c''" ["c'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
352 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
353 ("c~~" ["c~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
354 ("d//" ["d/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
355 ("d~~" ["d~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
356 ("e''" ["e'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
357 ("e,," ["e,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
358 ("e\"\"" ["e\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
359 ("e~~" ["e~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
360 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
361 ("i^^" ["i^"])
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 ("l//" ["l/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
364 ("l~~" ["l~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
365 ("n''" ["n'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
366 ("n~~" ["n~"])
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 ("o\"\"" ["o\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
370 ("o^^" ["o^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
371 ("r''" ["r'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
372 ("r~~" ["r~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
373 ("s''" ["s'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
374 ("s,," ["s,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
375 ("s//" ["s/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
376 ("s~~" ["s~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
377 ("t,," ["t,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
378 ("t~~" ["t~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
379 ("u''" ["u'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
380 ("u::" ["u:"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
381 ("u\"\"" ["u\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
382 ("u.." ["u."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
383 ("y''" ["y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
384 ("z''" ["z'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
385 ("z.." ["z."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
386 ("z~~" ["z~"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
387 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
388
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
389 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
390 "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
391 "Latin-3 character input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
392
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
393 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
394 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
395 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
396 grave | ` | a` -> à
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
397 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
398 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
399 dot | . | c. -> ċ i. -> ı I. -> İ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
400 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
401 breve | ~ | g~ -> ğ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
402 tilde | ~ | n~ -> ñ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
403 stroke | / | h/ -> ħ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
404 others | / | s/ -> ß
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
405
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
406 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
407 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
408
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
409 (quail-define-rules
88789
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 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
413 ("A\"" ?Ä)
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 ("C^" ?Ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
416 ("C," ?Ç)
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 ("E^" ?Ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
420 ("E\"" ?Ë)
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 ("G." ?Ġ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
423 ("G^" ?Ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
424 ("H/" ?Ħ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
425 ("H^" ?Ĥ)
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 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
430 ("I\"" ?Ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
431 ("J^" ?Ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
432 ("N~" ?Ñ)
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 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
436 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
437 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
438 ("S^" ?Ŝ)
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 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
443 ("U~" ?Ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
444 ("Z." ?Ż)
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 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
448 ("a\"" ?ä)
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 ("c^" ?ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
451 ("c," ?ç)
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 ("e^" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
455 ("e\"" ?ë)
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 ("g." ?ġ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
458 ("g^" ?ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
459 ("h/" ?ħ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
460 ("h^" ?ĥ)
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 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
465 ("i\"" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
466 ("j^" ?ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
467 ("n~" ?ñ)
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 ("o^" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
471 ("o\"" ?ö)
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 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
474 ("s^" ?ŝ)
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 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
479 ("u~" ?ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
480 ("z." ?ż)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
481
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'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
484 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
485 ("A\"\"" ["A\""])
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 ("C^^" ["C^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
488 ("C,," ["C,"])
19671
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 ("E^^" ["E^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
492 ("E\"\"" ["E\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
493 ("G~~" ["G~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
494 ("G.." ["G."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
495 ("G^^" ["G^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
496 ("H//" ["H/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
497 ("H^^" ["H^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
498 ("I.." ["I."])
19671
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 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
502 ("I\"\"" ["I\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
503 ("J^^" ["J^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
504 ("N~~" ["N~"])
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'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
507 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
508 ("O\"\"" ["O\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
509 ("S,," ["S,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
510 ("S^^" ["S^"])
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^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
514 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
515 ("U~~" ["U~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
516 ("Z.." ["Z."])
19671
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'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
519 ("a^^" ["a^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
520 ("a\"\"" ["a\""])
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 ("c^^" ["c^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
523 ("c,," ["c,"])
19671
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 ("e^^" ["e^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
527 ("e\"\"" ["e\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
528 ("g~~" ["g~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
529 ("g.." ["g."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
530 ("g^^" ["g^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
531 ("h//" ["h/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
532 ("h^^" ["h^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
533 ("i.." ["i."])
19671
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 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
537 ("i\"\"" ["i\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
538 ("j^^" ["j^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
539 ("n~~" ["n~"])
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'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
542 ("o^^" ["o^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
543 ("o\"\"" ["o\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
544 ("s,," ["s,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
545 ("s//" ["s/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
546 ("s^^" ["s^"])
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^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
550 ("u\"\"" ["u\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
551 ("u~~" ["u~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
552 ("z.." ["z."])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
553 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
554
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
555 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
556 "latin-4-postfix" "Latin-4" "4<" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
557 "Latin-4 characters input method with postfix modifiers
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
558
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
559 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
560 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
561 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
562 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
563 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
564 ogonek | , | a, -> ą
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
565 macron | - | a- -> ā
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
566 tilde | ~ | a~ -> ã
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
567 caron | ~ | c~ -> č
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
568 dot | . | e. -> ė
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
569 cedilla | , | k, -> ķ g, -> ģ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
570 stroke | / | d/ -> đ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
571 nordic | / | a/ -> å e/ -> æ o/ -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
572 others | / | s/ -> ß n/ -> ŋ k/ -> ĸ
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
573
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
574 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
575 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
576
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
577 (quail-define-rules
88789
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 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
584 ("A/" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
585 ("C~" ?Č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
586 ("D/" ?Đ)
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 ("E\"" ?Ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
592 ("E." ?Ė)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
593 ("G," ?Ģ)
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 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
598 ("I-" ?Ī)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
599 ("K," ?Ķ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
600 ("L," ?Ļ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
601 ("N/" ?Ŋ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
602 ("N," ?Ņ)
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 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
607 ("O/" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
608 ("R," ?Ŗ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
609 ("S~" ?Š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
610 ("T/" ?Ŧ)
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 ("U~" ?Ũ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
616 ("U-" ?Ū)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
617 ("Z~" ?Ž)
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 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
624 ("a/" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
625 ("c~" ?č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
626 ("d/" ?đ)
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 ("e\"" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
632 ("e." ?ė)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
633 ("g," ?ģ)
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 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
638 ("i-" ?ī)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
639 ("k/" ?ĸ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
640 ("k," ?ķ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
641 ("l," ?ļ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
642 ("n/" ?ŋ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
643 ("n," ?ņ)
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 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
648 ("o/" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
649 ("r," ?ŗ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
650 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
651 ("s~" ?š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
652 ("t/" ?ŧ)
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 ("u~" ?ũ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
658 ("u-" ?ū)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
659 ("z~" ?ž)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
660
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
661 ("A,," ["A,"])
19671
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 ("A\"\"" ["A\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
667 ("A//" ["A/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
668 ("C~~" ["C~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
669 ("D//" ["D/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
670 ("E//" ["E/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
671 ("E--" ["E-"])
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,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
674 ("E\"\"" ["E\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
675 ("E.." ["E."])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
676 ("G,," ["G,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
677 ("I~~" ["I~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
678 ("I,," ["I,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
679 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
680 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
681 ("I--" ["I-"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
682 ("K,," ["K,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
683 ("L,," ["L,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
684 ("N//" ["N/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
685 ("N,," ["N,"])
19671
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~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
689 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
690 ("O//" ["O/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
691 ("R,," ["R,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
692 ("S~~" ["S~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
693 ("T//" ["T/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
694 ("U,," ["U,"])
19671
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 ("U~~" ["U~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
699 ("U--" ["U-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
700 ("Z~~" ["Z~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
701 ("a,," ["a,"])
19671
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 ("a\"\"" ["a\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
707 ("a//" ["a/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
708 ("c~~" ["c~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
709 ("d//" ["d/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
710 ("e//" ["e/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
711 ("e--" ["e-"])
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,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
714 ("e\"\"" ["e\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
715 ("e.." ["e."])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
716 ("g,," ["g,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
717 ("i~~" ["i~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
718 ("i,," ["i,"])
19671
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 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
721 ("i--" ["i-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
722 ("k//" ["k/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
723 ("k,," ["k,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
724 ("l,," ["l,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
725 ("n//" ["n/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
726 ("n,," ["n,"])
19671
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~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
730 ("o\"\"" ["o\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
731 ("o//" ["o/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
732 ("r,," ["r,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
733 ("s//" ["s/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
734 ("s~~" ["s~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
735 ("t//" ["t/"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
736 ("u,," ["u,"])
19671
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 ("u~~" ["u~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
741 ("u--" ["u-"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
742 ("z~~" ["z~"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
743 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
744
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
745 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
746 "latin-5-postfix" "Latin-5" "5<" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
747 "Latin-5 characters input method with postfix modifiers
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
748
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
749 | postfix | examples
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
750 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
751 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
752 grave | ` | a` -> à
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
753 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
754 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
755 tilde | ~ | a~ -> ã
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
756 breve | ~ | g~ -> ğ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
757 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
758 dot | . | i. -> ı I. -> İ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
759 nordic | / | a/ -> å e/ -> æ o/ -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
760 others | / | s/ -> ß
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
761
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
762 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
763 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
764
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
765 (quail-define-rules
88789
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 ("A`" ?À)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
771 ("A~" ?Ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
772 ("C," ?Ç)
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 ("E^" ?Ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
777 ("E`" ?È)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
778 ("G~" ?Ğ)
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 ("I^" ?Î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
783 ("I`" ?Ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
784 ("N~" ?Ñ)
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 ("O`" ?Ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
790 ("O~" ?Õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
791 ("S," ?Ş)
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 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
795 ("U`" ?Ù)
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 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
801 ("a~" ?ã)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
802 ("c," ?ç)
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 ("e^" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
807 ("e`" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
808 ("g~" ?ğ)
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 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
813 ("i`" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
814 ("n~" ?ñ)
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 ("o`" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
820 ("o~" ?õ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
821 ("s," ?ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
822 ("s/" ?ß)
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 ("u^" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
826 ("u`" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
827 ("y\"" ?ÿ)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
828
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^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
833 ("A``" ["A`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
834 ("A~~" ["A~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
835 ("C,," ["C,"])
19671
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 ("E^^" ["E^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
840 ("E``" ["E`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
841 ("G~~" ["G~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
842 ("I''" ["I'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
843 ("I.." ["I."])
19671
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 ("I^^" ["I^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
846 ("I``" ["I`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
847 ("N~~" ["N~"])
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^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
852 ("O``" ["O`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
853 ("O~~" ["O~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
854 ("S,," ["S,"])
19671
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 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
858 ("U``" ["U`"])
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^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
863 ("a``" ["a`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
864 ("a~~" ["a~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
865 ("c,," ["c,"])
19671
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 ("e^^" ["e^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
870 ("e``" ["e`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
871 ("g~~" ["g~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
872 ("i''" ["i'"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
873 ("i.." ["i."])
19671
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 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
876 ("i``" ["i`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
877 ("n~~" ["n~"])
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^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
882 ("o``" ["o`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
883 ("o~~" ["o~"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
884 ("s,," ["s,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
885 ("s//" ["s/"])
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 ("u^^" ["u^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
889 ("u``" ["u`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
890 ("y\"\"" ["y\""])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
891 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
892
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
893 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
894 "danish-postfix" "Latin-1" "DA<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
895 "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
896
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
897 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
898 "
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
899 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
900
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
901 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
902 ("AE" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
903 ("ae" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
904 ("OE" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
905 ("oe" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
906 ("AA" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
907 ("aa" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
908 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
909 ("e'" ?é)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
910
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
911 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
912 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
913 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
914 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
915 ("AAA" ["AA"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
916 ("aaa" ["aa"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
917 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
918 ("e''" ["e'"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
919 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
920
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
921 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
922 "esperanto-postfix" "Latin-3" "EO<" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
923 "Esperanto input method with postfix modifiers
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
924
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
925 A following ^ or x will produce an accented character,
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
926 e.g. c^ -> ĉ gx -> ĝ u^ -> ŭ.
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
927
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
928 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
929 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
930 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
931
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
932 (quail-define-rules
88789
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 ("cx" ?ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
936 ("c^" ?ĉ)
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 ("gx" ?ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
940 ("g^" ?ĝ)
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 ("hx" ?ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
944 ("h^" ?ĥ)
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 ("jx" ?ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
948 ("j^" ?ĵ)
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 ("sx" ?ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
952 ("s^" ?ŝ)
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^" ?Ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
955 ("ux" ?ŭ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
956 ("u^" ?ŭ)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
957
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 ("cxx" ["cx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
961 ("c^^" ["c^"])
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 ("gxx" ["gx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
965 ("g^^" ["g^"])
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 ("hxx" ["hx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
969 ("h^^" ["h^"])
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 ("jxx" ["jx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
973 ("j^^" ["j^"])
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 ("sxx" ["sx"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
977 ("s^^" ["s^"])
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^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
980 ("uxx" ["ux"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
981 ("u^^" ["u^"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
982 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
983
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
984 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
985 "finnish-postfix" "Latin-1" "FI<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
986 "Finnish (Suomi) input method
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
987
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
988 AE -> Ä
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
989 AEE -> AE
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
990 OE -> Ö
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
991 OEE -> OE
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
992 "
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
993 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
994
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
995 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
996 ("AE" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
997 ("ae" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
998 ("OE" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
999 ("oe" ?ö)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1000
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1001 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1002 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1003 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1004 ("oee" ["oe"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1005 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1006
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1007 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1008 "french-postfix" "French" "FR<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1009 "French (Français) input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1010
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1011 ` pour grave, ' pour aigu, ^ pour circonflexe, et \" pour tréma.
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1012 Par exemple: a` -> à e' -> é.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1013
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1014 Ç, «, et » sont produits par C,, <<, et >>.
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1015
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1016 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
1017 Par exemple: e'' -> e'
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1018
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1019 <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
1020 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1021
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1022 (quail-define-rules
88789
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 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1026 ("a^" ?â)
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 ("e^" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1034 ("e\"" ?ë)
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 ("i^" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1038 ("i\"" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1039 ("O^" ?Ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1040 ("o^" ?ô)
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 ("u^" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1046 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1047 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1048 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1049 ("<<" ?«)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1050 (">>" ?»)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1051
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 ("a``" ["a`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1055 ("a^^" ["a^"])
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 ("e^^" ["e^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1063 ("e\"\"" ["e\""])
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 ("i^^" ["i^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1067 ("i\"\"" ["i\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1068 ("O^^" ["O^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1069 ("o^^" ["o^"])
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`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1074 ("u^^" ["u^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1075 ("u\"\"" ["u\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1076 ("C,," ["C,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1077 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1078 ("<<<" ["<<"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1079 (">>>" [">>"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1080 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1081
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1082 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1083 "german-postfix" "German" "DE<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1084 "German (Deutsch) input method
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1085
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1086 ae -> ä
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1087 aee -> ae
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1088 oe -> ö
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1089 oee -> oe
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1090 ue -> ü
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1091 uee -> ue
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1092 sz -> ß
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1093 szz -> sz
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1094 "
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1095 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1096
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1097 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1098 ("AE" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1099 ("ae" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1100 ("OE" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1101 ("oe" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1102 ("UE" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1103 ("ue" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1104 ("sz" ?ß)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1105
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1106 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1107 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1108 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1109 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1110 ("UEE" ["UE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1111 ("uee" ["ue"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1112 ("szz" ["sz"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1113 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1114
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1115 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1116 "icelandic-postfix" "Latin-1" "IS<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1117 "Icelandic (Íslenska) input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1118
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1119 A' -> Á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1120 E' -> É
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1121 I' -> Í
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1122 O' -> Ó
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1123 U' -> Ú
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1124 Y' -> Ý
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1125 AE -> Æ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1126 OE -> Ö
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1127 D/ -> Ð (eth)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1128 T/ -> Þ (thorn)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1129
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1130 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
1131 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1132
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1133 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1134 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1135 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1136 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1137 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1138 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1139 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1140 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1141 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1142 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1143 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1144 ("Y'" ?Ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1145 ("y'" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1146 ("AE" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1147 ("ae" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1148 ("OE" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1149 ("oe" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1150 ("D/" ?Ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1151 ("d/" ?ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1152 ("T/" ?Þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1153 ("t/" ?þ)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1154
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1155 ("A''" ["A'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1156 ("a''" ["a'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1157 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1158 ("e''" ["e'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1159 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1160 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1161 ("O''" ["O'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1162 ("o''" ["o'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1163 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1164 ("u''" ["u'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1165 ("Y''" ["Y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1166 ("y''" ["y'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1167 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1168 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1169 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1170 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1171 ("D//" ["D/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1172 ("d//" ["d/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1173 ("T//" ["T/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1174 ("t//" ["t/"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1175 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1176
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1177 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1178 "italian-postfix" "Latin-1" "IT<" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1179 "Italian (Italiano) input method with postfix modifiers
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1180
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1181 a` -> à A` -> À e' -> é << -> «
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1182 e` -> è E` -> È E' -> É >> -> »
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1183 i` -> ì I` -> Ì o_ -> º
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1184 o` -> ò O` -> Ò a_ -> ª
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1185 u` -> ù U` -> Ù
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1186
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1187 Typewriter-style italian characters.
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1188
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1189 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
1190 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1191
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1192 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1193 ("A`" ?À)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1194 ("a`" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1195 ("E`" ?È)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1196 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1197 ("e`" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1198 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1199 ("I`" ?Ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1200 ("i`" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1201 ("O`" ?Ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1202 ("o`" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1203 ("U`" ?Ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1204 ("u`" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1205 ("<<" ?«)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1206 (">>" ?»)
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 ("a_" ?ª)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1209
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1210 ("A``" ["A`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1211 ("a``" ["a`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1212 ("E``" ["E`"])
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1213 ("E''" ["E'"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1214 ("e``" ["e`"])
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1215 ("e''" ["e'"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1216 ("I``" ["I`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1217 ("i``" ["i`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1218 ("O``" ["O`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1219 ("o``" ["o`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1220 ("U``" ["U`"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1221 ("u``" ["u`"])
23445
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1222 ("<<<" ["<<"])
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1223 (">>>" [">>"])
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1224 ("o__" ["o_"])
838c9bd2adcd ("latin-1-postfix"): Add a method to enter the
Richard M. Stallman <rms@gnu.org>
parents: 19956
diff changeset
1225 ("a__" ["a_"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1226 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1227
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1228 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1229 "norwegian-postfix" "Latin-1" "NO<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1230 "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
1231
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1232 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
1233 "
19652
c1b01ff226c4 Pass t for the SIMPLE argument to quail-define-package.
Richard M. Stallman <rms@gnu.org>
parents: 18716
diff changeset
1234 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1235
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1236 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1237 ("AE" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1238 ("ae" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1239 ("OE" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1240 ("oe" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1241 ("AA" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1242 ("aa" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1243 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1244 ("e'" ?é)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1245
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1246 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1247 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1248 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1249 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1250 ("AAA" ["AA"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1251 ("aaa" ["aa"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1252 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1253 ("e''" ["e'"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1254 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1255
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1256 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1257 "scandinavian-postfix" "Latin-1" "SC<" t
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1258 "Scandinavian input method with postfix modifiers
79567
a3e3ad21895c ("scandinavian-postfix"): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 78308
diff changeset
1259 Supported languages are Swedish, Norwegian, Danish, and Finnish.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1260
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1261 ae -> æ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1262 oe -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1263 aa -> å
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1264 a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1265 o\" -> ö
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1266 e' -> é
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1267
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1268 Doubling the postfix separates the letter and postfix:
23469
b42bd7e943b8 Many doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 23445
diff changeset
1269 aee -> ae o\"\" -> o\" etc.
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1270 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1271
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1272 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1273 ("AE" ?Æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1274 ("ae" ?æ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1275 ("OE" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1276 ("oe" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1277 ("AA" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1278 ("aa" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1279 ("A\"" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1280 ("a\"" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1281 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1282 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1283 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1284 ("e'" ?é)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1285
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1286 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1287 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1288 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1289 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1290 ("AAA" ["AA"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1291 ("aaa" ["aa"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1292 ("A\"\"" ["A\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1293 ("a\"\"" ["a\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1294 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1295 ("o\"\"" ["o\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1296 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1297 ("e''" ["e'"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1298 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1299
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1300 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1301 "spanish-postfix" "Spanish" "ES<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1302 "Spanish (Español) input method with postfix modifiers
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1303
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1304 A' -> Á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1305 E' -> É
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1306 I' -> Í
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1307 O' -> Ó
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1308 U' -> Ú
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1309 N~ -> Ñ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1310 !/ -> ¡
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1311 ?/ -> ¿
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1312
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1313 Doubling the postfix separates the letter and postfix:
23469
b42bd7e943b8 Many doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 23445
diff changeset
1314 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
1315 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1316
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1317 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1318 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1319 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1320 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1321 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1322 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1323 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1324 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1325 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1326 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1327 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1328 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1329 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1330 ("N~" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1331 ("n~" ?ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1332 ("?/" ?¿)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1333 ("!/" ?¡)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1334
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1335 ("A''" ["A'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1336 ("a''" ["a'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1337 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1338 ("e''" ["e'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1339 ("I''" ["I'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1340 ("i''" ["i'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1341 ("O''" ["O'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1342 ("o''" ["o'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1343 ("U''" ["U'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1344 ("u''" ["u'"])
24430
fa964bcd6d26 ("spanish-postfix"): Add rule U" and u".
Kenichi Handa <handa@m17n.org>
parents: 23469
diff changeset
1345 ("U\"" ["U\""])
fa964bcd6d26 ("spanish-postfix"): Add rule U" and u".
Kenichi Handa <handa@m17n.org>
parents: 23469
diff changeset
1346 ("u\"" ["U\""])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1347 ("N~~" ["N~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1348 ("n~~" ["n~"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1349 ("?//" ["?/"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1350 ("!//" ["!/"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1351 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1352
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1353 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1354 "swedish-postfix" "Latin-1" "SV<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1355 "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
1356
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1357 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
1358 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1359
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1360 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1361 ("AA" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1362 ("aa" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1363 ("AE" ?Ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1364 ("ae" ?ä)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1365 ("OE" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1366 ("oe" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1367 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1368 ("e'" ?é)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1369
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1370 ("AAA" ["AA"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1371 ("aaa" ["aa"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1372 ("AEE" ["AE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1373 ("aee" ["ae"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1374 ("OEE" ["OE"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1375 ("oee" ["oe"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1376 ("E''" ["E'"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1377 ("e''" ["e'"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1378 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1379
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1380 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1381 "turkish-postfix" "Turkish" "TR<" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1382 "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
1383 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
1384
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1385 Note for I, ı, İ, i.
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1386
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1387 A^ -> Â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1388 C, -> Ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1389 G^ -> Ğ
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1390 I -> I
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1391 i -> ı
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1392 I. -> İ
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1393 i. -> i
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1394 O\" -> Ö
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1395 S, -> Ş
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1396 U\" -> Ü
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1397 U^ -> Û
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1398
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1399 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
1400 " nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1401
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1402 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1403 ("A^" ?Â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1404 ("a^" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1405 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1406 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1407 ("G^" ?Ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1408 ("g^" ?ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1409 ("I." ?İ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1410 ("i" ?ı)
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1411 ("i." ?i)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1412 ("O\"" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1413 ("o\"" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1414 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1415 ("s," ?ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1416 ("U\"" ?Ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1417 ("u\"" ?ü)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1418 ("U^" ?Û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1419 ("u^" ?û)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1420
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1421 ("A^^" ["A^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1422 ("a^^" ["a^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1423 ("C,," ["C,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1424 ("c,," ["c,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1425 ("G^^" ["G^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1426 ("g^^" ["g^"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1427 ("I.." ["I."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1428 ("i" ["i"])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1429 ("i.." ["i."])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1430 ("O\"\"" ["O\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1431 ("o\"\"" ["o\""])
19900
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1432 ("S,," ["S,"])
fa397fb1d859 Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 19884
diff changeset
1433 ("s,," ["s,"])
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1434 ("U\"\"" ["U\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1435 ("u\"\"" ["u\""])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1436 ("U^^" ["U^"])
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1437 ("u^^" ["u^"])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1438 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1439
89234
bc01e3bbf51a ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 88789
diff changeset
1440 ;; Backwards compatibility.
bc01e3bbf51a ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 88789
diff changeset
1441 (push (cons "turkish-latin-3-postfix"
89398
cc2cac7c9faf ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 89234
diff changeset
1442 (cdr (assoc "turkish-postfix" quail-package-alist)))
cc2cac7c9faf ("turkish-latin-3-postfix"): Make it
Dave Love <fx@gnu.org>
parents: 89234
diff changeset
1443 quail-package-alist)
25775
f80708f9a5bb ("turkish-latin-3-postfix"): Renamed from
Kenichi Handa <handa@m17n.org>
parents: 24430
diff changeset
1444
f80708f9a5bb ("turkish-latin-3-postfix"): Renamed from
Kenichi Handa <handa@m17n.org>
parents: 24430
diff changeset
1445 (quail-define-package
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1446 "british" "Latin-1" "£@" t
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1447 "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
1448 nil t nil nil nil nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1449
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1450 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1451 ("#" [?£ ?#])
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1452 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1453
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1454 ;; 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
1455 ;; the above are too awkward. Supported languages and their
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1456 ;; package name are:
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1457 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1458 ;; French (frnch, azerty)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1459 ;; Icelandic (iclndc)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1460 ;; Denish (dnsh)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1461 ;; Norwegian (nrwgn)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1462 ;; Swedish (swdsh)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1463 ;; Finnish (fnnsh)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1464 ;; German (grmn)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1465 ;; Italian (itln)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1466 ;; Spanish (spnsh)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1467 ;; Dvorak (dvorak)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1468 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1469 ;;; 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
1470 ;;; 92.12.29 modified by Takahashi N. <ntakahas@etl.go.jp>
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1471
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1472 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1473 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1474 "french-keyboard" "French" "FR@" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1475 "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
1476 <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
1477
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1478 ;; ê1 é2 è3 ô4 î5 ï6 â7 û8 ù9 à0 -_ ë+ `~
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1479 ;; qQ wW eE rR tT yY uU iI oO pP çÇ ü&
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1480 ;; aA sS dD fF gG hH jJ kK lL ;: '" \|
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1481 ;; zZ xX cC vV bB nN mM ,( .) !?
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1482
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1483 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1484 ("1" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1485 ("2" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1486 ("3" ?è)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1487 ("4" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1488 ("5" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1489 ("6" ?ï)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1490 ("7" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1491 ("8" ?û)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1492 ("9" ?ù)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1493 ("0" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1494 ("=" ?ë)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1495 ("[" ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1496 ("]" ?ü)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1497
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1498 ("!" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1499 ("@" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1500 ("#" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1501 ("$" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1502 ("%" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1503 ("^" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1504 ("&" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1505 ("*" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1506 ("(" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1507 (")" ?0)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1508 ("{" ?Ç)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1509 ("}" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1510 ("<" ?\()
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1511 (">" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1512 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1513
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1514 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1515 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1516 "french-azerty" "French" "AZ@" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1517 "French (Français) input method simulating Azerty keyboard
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1518
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1519 Similaire au clavier français de SUN.
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1520 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
1521 <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
1522
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1523 ;; &1 é2 "3 '4 (5 §6 è7 !8 ç9 à0 )° -_ @~
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1524 ;; aA zZ eE rR tT yY uU iI oO pP ^¨ `$
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1525 ;; qQ sS dD fF gG hH jJ kK lL mM ù% *|
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1526 ;; wW xX cC vV bB nN ,? ;. :/ =+
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1527
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1528 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1529 ("1" ?&)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1530 ("2" ?é)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1531 ("3" ?\")
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1532 ("4" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1533 ("5" ?\()
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1534 ("6" ?§)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1535 ("7" ?è)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1536 ("8" ?!)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1537 ("9" ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1538 ("0" ?à)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1539 ("-" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1540 ("=" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1541 ("`" ?@)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1542 ("q" ?a)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1543 ("w" ?z)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1544 ("e" ?e)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1545 ("r" ?r)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1546 ("t" ?t)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1547 ("y" ?y)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1548 ("u" ?u)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1549 ("i" ?i)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1550 ("o" ?o)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1551 ("p" ?p)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1552 ("[" ?^)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1553 ("]" ?`)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1554 ("a" ?q)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1555 ("s" ?s)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1556 ("d" ?d)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1557 ("f" ?f)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1558 ("g" ?g)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1559 ("h" ?h)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1560 ("j" ?j)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1561 ("k" ?k)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1562 ("l" ?l)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1563 (";" ?m)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1564 ("'" ?ù)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1565 ("\\" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1566 ("z" ?w)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1567 ("x" ?x)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1568 ("c" ?c)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1569 ("v" ?v)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1570 ("b" ?b)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1571 ("n" ?n)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1572 ("m" ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1573 ("," ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1574 ("." ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1575 ("/" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1576
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1577 ("!" ?1)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1578 ("@" ?2)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1579 ("#" ?3)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1580 ("$" ?4)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1581 ("%" ?5)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1582 ("^" ?6)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1583 ("&" ?7)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1584 ("*" ?8)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1585 ("(" ?9)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1586 (")" ?0)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1587 ("_" ?°)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1588 ("+" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1589 ("~" ?~)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1590 ("Q" ?A)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1591 ("W" ?Z)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1592 ("E" ?E)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1593 ("R" ?R)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1594 ("T" ?T)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1595 ("Y" ?Y)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1596 ("U" ?U)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1597 ("I" ?I)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1598 ("O" ?O)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1599 ("P" ?P)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1600 ("{" ?¨)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1601 ("}" ?$)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1602 ("A" ?Q)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1603 ("S" ?S)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1604 ("D" ?D)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1605 ("F" ?F)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1606 ("G" ?G)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1607 ("H" ?H)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1608 ("J" ?J)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1609 ("K" ?K)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1610 ("L" ?L)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1611 (":" ?M)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1612 ("\"" ?%)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1613 ("|" ?|)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1614 ("Z" ?W)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1615 ("X" ?X)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1616 ("C" ?C)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1617 ("V" ?V)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1618 ("B" ?B)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1619 ("N" ?N)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1620 ("M" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1621 ("<" ?.)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1622 (">" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1623 ("?" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1624
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1625 ("[q" ?â)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1626 ("[e" ?ê)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1627 ("[i" ?î)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1628 ("[o" ?ô)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1629 ("[u" ?û)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1630
88789
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 ("{u" ?ü)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1634
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1635 ("[[" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1636 ("{{" ?¨)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1637 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1638
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1639 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1640 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1641 "icelandic-keyboard" "Latin-1" "IS@" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1642 "Icelandic (Íslenska) input method simulating some Icelandic keyboard
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1643
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1644 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
1645
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1646 ;; 1! 2" 3# 4$ 5% 6^ 7& 8* 9( 0) öÖ -_ `~
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1647 ;; qQ wW eE rR tT yY uU iI oO pP ðÐ '?
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1648 ;; aA sS dD fF gG hH jJ kK lL æÆ ´´ +*
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1649 ;; zZ xX cC vV bB nN mM ,; .: þÞ
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1650
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1651 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1652 ("-" ?ö)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1653 ("=" ?-)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1654 ("[" ?ð)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1655 ("]" ?')
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1656 (";" ?æ)
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
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1661 ("@" ?\")
88789
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 ("}" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1666 (":" ?Æ)
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 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1669 ("<" ?\;)
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 ("?" ?Þ)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1672
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1673 ("'a" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1674 ("'e" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1675 ("'i" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1676 ("'o" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1677 ("'u" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1678 ("'y" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1679 ("'A" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1680 ("'E" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1681 ("'I" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1682 ("'O" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1683 ("'U" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1684 ("'Y" ?Ý)
19671
4a3b270bc6fc Add rules for cancelling accents by typing
Kenichi Handa <handa@m17n.org>
parents: 19652
diff changeset
1685
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1686 ("''" ?´)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1687 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1688
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1689 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1690 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1691 "danish-keyboard" "Latin-1" "DA@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1692 "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
1693 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1694
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1695 ;; 1! 2" 3# 4¤ 5% 6& 7/ 8( 9) 0= +? ½§ ~^
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1696 ;; qQ wW eE rR tT yY uU iI oO pP åÅ éÉ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1697 ;; aA sS dD fF gG hH jJ kK lL æÆ øØ '*
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1698 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1699
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1700 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1701 ("-" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1702 ("=" ?½)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1703 ("`" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1704 ("[" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1705 ("]" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1706 (";" ?æ)
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 ("\\" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1709 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1710
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1711 ("@" ?\")
88789
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 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1717 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1718 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1719 ("+" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1720 ("~" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1721 ("{" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1722 ("}" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1723 (":" ?Æ)
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 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1726 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1727 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1728 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1729 )
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 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1733 "norwegian-keyboard" "Latin-1" "NO@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1734 "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
1735 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1736
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1737 ;; 1! 2" 3# 4¤ 5% 6& 7/ 8( 9) 0= +? |§ ~^
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1738 ;; qQ wW eE rR tT yY uU iI oO pP åÅ éÉ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1739 ;; aA sS dD fF gG hH jJ kK lL øØ æÆ '*
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1740 ;; zZ xX cC vV bB nN mM ,; .: '?
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1741
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1742 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1743 ("-" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1744 ("=" ?|)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1745 ("`" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1746 ("[" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1747 ("]" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1748 (";" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1749 ("'" ?æ)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1750 ("\\" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1751 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1752
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1753 ("!" ?!)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1754 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1755 ("$" ?¤)
18673
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 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1760 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1761 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1762 ("+" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1763 ("~" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1764 ("{" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1765 ("}" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1766 (":" ?Ø)
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 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1769 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1770 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1771 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1772 )
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 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1776 "swedish-keyboard" "Latin-1" "SV@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1777 "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
1778 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1779
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1780 ;; 1! 2" 3# 4¤ 5% 6& 7/ 8( 9) 0= +? §½ ~^
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1781 ;; qQ wW eE rR tT yY uU iI oO pP åÅ éÉ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1782 ;; aA sS dD fF gG hH jJ kK lL öÖ äÄ '*
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1783 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1784
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1785 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1786 ("-" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1787 ("=" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1788 ("`" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1789 ("[" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1790 ("]" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1791 (";" ?ö)
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 ("\\" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1794 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1795
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1796 ("@" ?\")
88789
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 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1802 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1803 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1804 ("+" ?½)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1805 ("~" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1806 ("{" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1807 ("}" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1808 (":" ?Ö)
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 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1811 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1812 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1813 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1814 )
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 (quail-define-package
36837
54755fa58f05 (finnish-keyboard): Fix a typo.
Eli Zaretskii <eliz@gnu.org>
parents: 25775
diff changeset
1818 "finnish-keyboard" "Latin-1" "FI@" t
54755fa58f05 (finnish-keyboard): Fix a typo.
Eli Zaretskii <eliz@gnu.org>
parents: 25775
diff changeset
1819 "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
1820 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1821
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1822 ;; 1! 2" 3# 4¤ 5% 6& 7/ 8( 9) 0= +? §½ ~^
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1823 ;; qQ wW eE rR tT yY uU iI oO pP åÅ éÉ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1824 ;; aA sS dD fF gG hH jJ kK lL öÖ äÄ '*
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1825 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1826
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1827 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1828 ("-" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1829 ("=" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1830 ("`" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1831 ("[" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1832 ("]" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1833 (";" ?ö)
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 ("\\" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1836 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1837
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1838 ("@" ?\")
88789
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 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1844 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1845 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1846 ("+" ?½)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1847 ("~" ?^)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1848 ("{" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1849 ("}" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1850 (":" ?Ö)
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 ("|" ?*)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1853 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1854 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1855 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1856 )
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 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1860 "german" "German" "DE@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1861 "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
1862 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1863
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1864 ;; 1! 2" 3§ 4$ 5% 6& 7/ 8( 9) 0= ß? [{ ]}
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1865 ;; qQ wW eE rR tT zZ uU iI oO pP üÜ +*
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1866 ;; aA sS dD fF gG hH jJ kK lL öÖ äÄ #^
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1867 ;; yY xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1868
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1869 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1870 ("-" ?ß)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1871 ("=" ?\[)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1872 ("`" ?\])
19956
4304c48c29c5 (german): Swap y and z.
Richard M. Stallman <rms@gnu.org>
parents: 19900
diff changeset
1873 ("y" ?z)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1874 ("[" ?ü)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1875 ("]" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1876 (";" ?ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1877 ("'" ?ä)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1878 ("\\" ?#)
19956
4304c48c29c5 (german): Swap y and z.
Richard M. Stallman <rms@gnu.org>
parents: 19900
diff changeset
1879 ("z" ?y)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1880 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1881
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1882 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1883 ("#" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1884 ("^" ?&)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1885 ("&" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1886 ("*" ?\()
19956
4304c48c29c5 (german): Swap y and z.
Richard M. Stallman <rms@gnu.org>
parents: 19900
diff changeset
1887 ("Y" ?Z)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1888 ("(" ?\))
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 ("+" ?{)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1892 ("~" ?})
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1893 ("{" ?Ü)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1894 ("}" ?*)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1895 (":" ?Ö)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1896 ("\"" ?Ä)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1897 ("|" ?^)
19956
4304c48c29c5 (german): Swap y and z.
Richard M. Stallman <rms@gnu.org>
parents: 19900
diff changeset
1898 ("Z" ?Y)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1899 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1900 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1901 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1902 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1903
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1904 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1905 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1906 "italian-keyboard" "Latin-1" "IT@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1907 "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
1908 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1909
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1910 ;; 1! 2" 3£ 4$ 5% 6& 7/ 8( 9) 0= '? ì^ `~
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1911 ;; qQ wW eE rR tT yY uU iI oO pP èé +*
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1912 ;; aA sS dD fF gG hH jJ kK lL òç à° ù§
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1913 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1914
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1915 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1916 ("-" ?')
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1917 ("=" ?ì)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1918 ("[" ?è)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1919 ("]" ?+)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1920 (";" ?ò)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1921 ("'" ?à)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1922 ("\\" ?ù)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1923 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1924
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1925 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1926 ("#" ?£)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1927 ("^" ?&)
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 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1931 (")" ?=)
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 ("~" ?~)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1935 ("{" ?é)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1936 ("}" ?*)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1937 (":" ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1938 ("\"" ?°)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1939 ("|" ?§)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1940 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1941 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1942 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1943 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1944
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1945 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1946 (quail-define-package
42035
05d9998e4a84 ("french-postfix", "german-postfix")
Dave Love <fx@gnu.org>
parents: 40710
diff changeset
1947 "spanish-keyboard" "Spanish" "ES@" t
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1948 "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
1949 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1950
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1951 ;; 1! 2" 3· 4$ 5% 6& 7/ 8( 9) 0= '? ¡¿ íÍ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1952 ;; qQ wW eE rR tT yY uU iI oO pP éÉ óÓ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1953 ;; aA sS dD fF gG hH jJ kK lL ñÑ áÁ úÚ
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1954 ;; zZ xX cC vV bB nN mM ,; .: -_
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1955
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1956 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1957 ("-" ?')
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1958 ("=" ?¡)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1959 ("`" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1960 ("[" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1961 ("]" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1962 (";" ?ñ)
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 ("\\" ?ú)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1965 ("/" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1966
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1967 ("@" ?\")
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1968 ("#" ?·)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1969 ("^" ?&)
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 ("(" ?\))
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1973 (")" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1974 ("_" ??)
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1975 ("+" ?¿)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1976 ("~" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1977 ("{" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1978 ("}" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
1979 (":" ?Ñ)
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 ("|" ?Ú)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1982 ("<" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1983 (">" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1984 ("?" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1985 )
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1986
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1987 ;;
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1988 (quail-define-package
18716
25c391385880 Change titles of quail packages.
Kenichi Handa <handa@m17n.org>
parents: 18673
diff changeset
1989 "english-dvorak" "English" "DV@" t
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1990 "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
1991 nil t t t t nil nil nil nil nil t)
18673
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1992
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1993 ;; 1! 2@ 3# 4$ 5% 6^ 7& 8* 9( 0) [{ ]} `~
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1994 ;; '" ,< .> pP yY fF gG cC rR lL /? =+
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1995 ;; aA oO eE uU iI dD hH tT nN sS -_ \|
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1996 ;; ;: qQ jJ kK xX bB mM wW vV zZ
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1997
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1998 (quail-define-rules
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
1999 ("-" ?\[)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2000 ("=" ?\])
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2001 ("`" ?`)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2002 ("q" ?')
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2003 ("w" ?,)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2004 ("e" ?.)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2005 ("r" ?p)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2006 ("t" ?y)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2007 ("y" ?f)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2008 ("u" ?g)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2009 ("i" ?c)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2010 ("o" ?r)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2011 ("p" ?l)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2012 ("[" ?/)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2013 ("]" ?=)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2014 ("a" ?a)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2015 ("s" ?o)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2016 ("d" ?e)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2017 ("f" ?u)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2018 ("g" ?i)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2019 ("h" ?d)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2020 ("j" ?h)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2021 ("k" ?t)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2022 ("l" ?n)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2023 (";" ?s)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2024 ("'" ?-)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2025 ("\\" ?\\)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2026 ("z" ?\;)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2027 ("x" ?q)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2028 ("c" ?j)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2029 ("v" ?k)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2030 ("b" ?x)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2031 ("n" ?b)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2032 ("m" ?m)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2033 ("," ?w)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2034 ("." ?v)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2035 ("/" ?z)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2036
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2037 ("_" ?{)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2038 ("+" ?})
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2039 ("~" ?~)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2040 ("Q" ?\")
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2041 ("W" ?<)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2042 ("E" ?>)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2043 ("R" ?P)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2044 ("T" ?Y)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2045 ("Y" ?F)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2046 ("U" ?G)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2047 ("I" ?C)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2048 ("O" ?R)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2049 ("P" ?L)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2050 ("{" ??)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2051 ("}" ?+)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2052 ("A" ?A)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2053 ("S" ?O)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2054 ("D" ?E)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2055 ("F" ?U)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2056 ("G" ?I)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2057 ("H" ?D)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2058 ("J" ?H)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2059 ("K" ?T)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2060 ("L" ?N)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2061 (":" ?S)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2062 ("\"" ?_)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2063 ("|" ?|)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2064 ("Z" ?:)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2065 ("X" ?Q)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2066 ("C" ?J)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2067 ("V" ?K)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2068 ("B" ?X)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2069 ("N" ?B)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2070 ("M" ?M)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2071 ("<" ?W)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2072 (">" ?V)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2073 ("?" ?Z)
751941736224 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2074 )
38453
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
2075
46668
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2076 (quail-define-package
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2077 "latin-postfix" "Latin" "L<" t
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2078 "Latin character input method with postfix modifiers.
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2079 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
2080 of characters from a single Latin-N charset.
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2081
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2082 | postfix | examples
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2083 ------------+---------+----------
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2084 acute | ' | a' -> á
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2085 grave | ` | a` -> à
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2086 circumflex | ^ | a^ -> â
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2087 diaeresis | \" | a\" -> ä
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2088 tilde | ~ | a~ -> ã
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2089 cedilla | , | c, -> ç
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2090 ogonek | , | a, -> ą
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2091 breve | ~ | a~ -> ă
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2092 caron | ~ | c~ -> č
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2093 dbl. acute | : | o: -> ő
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2094 ring | . | u. -> ů
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2095 dot | . | z. -> ż
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2096 stroke | / | d/ -> đ
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2097 nordic | / | d/ -> ð t/ -> þ a/ -> å e/ -> æ o/ -> ø
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2098 others | / | s/ -> ß ?/ -> ¿ !/ -> ¡ // -> °
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2099 | various | << -> « >> -> » o_ -> º a_ -> ª
46668
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2100
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2101 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
2102 " nil t nil nil nil nil nil nil nil nil t)
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2103
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2104 ;; Fixme: ¦ § ¨ © ¬ ­ ® ¯ ± ² ³ ´ µ ¶ · ¸ ¹ ¼ ½ ¾ × ÷
46668
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2105 (quail-define-rules
88789
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2106 (" _" ? )
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2107 ("!/" ?¡)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2108 ("//" ?°)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2109 ("<<" ?\«)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2110 (">>" ?\»)
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 ("A'" ?Á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2115 ("A," ?Ą)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2116 ("A-" ?Ā)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2117 ("A/" ?Å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2118 ("A\"" ?Ä)
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 ("C'" ?Ć)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2124 ("C," ?Ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2125 ("C." ?Ċ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2126 ("C^" ?Ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2127 ("C~" ?Č)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2128 ("D/" ?Ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2129 ("D/" ?Đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2130 ("D~" ?Ď)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2131 ("E'" ?É)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2132 ("E," ?Ę)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2133 ("E-" ?Ē)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2134 ("E." ?Ė)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2135 ("E/" ?Æ)
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 ("G," ?Ģ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2141 ("G." ?Ġ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2142 ("G^" ?Ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2143 ("G~" ?Ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2144 ("H/" ?Ħ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2145 ("H^" ?Ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2146 ("I'" ?Í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2147 ("I," ?Į)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2148 ("I-" ?Ī)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2149 ("I." ?İ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2150 ("I\"" ?Ï)
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 ("J^" ?Ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2155 ("K," ?Ķ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2156 ("L'" ?Ĺ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2157 ("L," ?Ļ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2158 ("L/" ?Ł)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2159 ("L~" ?Ľ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2160 ("N'" ?Ń)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2161 ("N," ?Ņ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2162 ("N/" ?Ŋ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2163 ("N~" ?Ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2164 ("N~" ?Ň)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2165 ("O'" ?Ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2166 ("O-" ?Ō)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2167 ("O/" ?Ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2168 ("O/" ?Œ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2169 ("O:" ?Ő)
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 ("R'" ?Ŕ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2175 ("R," ?Ŗ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2176 ("R~" ?Ř)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2177 ("S'" ?Ś)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2178 ("S," ?Ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2179 ("S^" ?Ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2180 ("S~" ?Š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2181 ("T," ?Ţ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2182 ("T/" ?Þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2183 ("T/" ?Ŧ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2184 ("T~" ?Ť)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2185 ("U'" ?Ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2186 ("U," ?Ų)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2187 ("U-" ?Ū)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2188 ("U." ?Ů)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2189 ("U:" ?Ű)
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 ("Y'" ?Ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2196 ("Y\"" ?Ÿ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2197 ("Y=" ?¥)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2198 ("Z'" ?Ź)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2199 ("Z." ?Ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2200 ("Z~" ?Ž)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2201 ("a'" ?á)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2202 ("a," ?ą)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2203 ("a-" ?ā)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2204 ("a/" ?å)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2205 ("a\"" ?ä)
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 ("c'" ?ć)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2212 ("c," ?ç)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2213 ("c." ?ċ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2214 ("c^" ?ĉ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2215 ("c~" ?č)
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 ("d/" ?ð)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2218 ("d/" ?đ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2219 ("d~" ?ď)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2220 ("e'" ?é)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2221 ("e," ?ę)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2222 ("e-" ?ē)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2223 ("e." ?ė)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2224 ("e/" ?æ)
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 ("g," ?ģ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2231 ("g." ?ġ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2232 ("g^" ?ĝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2233 ("g~" ?ğ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2234 ("h/" ?ħ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2235 ("h^" ?ĥ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2236 ("i'" ?í)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2237 ("i," ?į)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2238 ("i-" ?ī)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2239 ("i." ?ı)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2240 ("i\"" ?ï)
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 ("j^" ?ĵ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2245 ("k," ?ķ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2246 ("k/" ?ĸ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2247 ("l'" ?ĺ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2248 ("l," ?ļ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2249 ("l/" ?ł)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2250 ("l~" ?ľ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2251 ("n'" ?ń)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2252 ("n," ?ņ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2253 ("n/" ?ŋ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2254 ("n~" ?ñ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2255 ("n~" ?ň)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2256 ("o'" ?ó)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2257 ("o-" ?ō)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2258 ("o/" ?ø)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2259 ("o/" ?œ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2260 ("o:" ?ő)
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 ("r'" ?ŕ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2267 ("r," ?ŗ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2268 ("r~" ?ř)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2269 ("s'" ?ś)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2270 ("s," ?ş)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2271 ("s/" ?ß)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2272 ("s^" ?ŝ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2273 ("s~" ?š)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2274 ("t," ?ţ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2275 ("t/" ?þ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2276 ("t/" ?ŧ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2277 ("t~" ?ť)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2278 ("u'" ?ú)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2279 ("u," ?ų)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2280 ("u-" ?ū)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2281 ("u." ?ů)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2282 ("u:" ?ű)
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 ("y'" ?ý)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2289 ("y\"" ?ÿ)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2290 ("z'" ?ź)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2291 ("z." ?ż)
cde0da3c5e90 Recoded to utf-8.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2292 ("z~" ?ž)
46668
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2293
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2294 ("!//" ["!/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2295 ("///" ["//"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2296 ("<<<" ["<<"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2297 (">>>" [">>"])
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 ("A''" ["A'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2301 ("A,," ["A,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2302 ("A--" ["A-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2303 ("A//" ["A/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2304 ("A\"\"" ["A\""])
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 ("C''" ["C'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2309 ("C,," ["C,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2310 ("C.." ["C."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2311 ("C^^" ["C^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2312 ("C~~" ["C~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2313 ("D//" ["D/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2314 ("D~~" ["D~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2315 ("E''" ["E'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2316 ("E,," ["E,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2317 ("E--" ["E-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2318 ("E.." ["E."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2319 ("E//" ["E/"])
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 ("G,," ["G,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2325 ("G.." ["G."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2326 ("G^^" ["G^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2327 ("G~~" ["G~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2328 ("H//" ["H/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2329 ("H^^" ["H^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2330 ("I''" ["I'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2331 ("I,," ["I,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2332 ("I--" ["I-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2333 ("I.." ["I."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2334 ("I\"\"" ["I\""])
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 ("J^^" ["J^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2339 ("K,," ["K,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2340 ("L''" ["L'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2341 ("L,," ["L,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2342 ("L//" ["L/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2343 ("L~~" ["L~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2344 ("N''" ["N'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2345 ("N,," ["N,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2346 ("N//" ["N/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2347 ("N~~" ["N~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2348 ("O''" ["O'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2349 ("O--" ["O-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2350 ("O//" ["O/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2351 ("O::" ["O:"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2352 ("O\"\"" ["O\""])
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 ("R''" ["R'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2357 ("R,," ["R,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2358 ("R~~" ["R~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2359 ("S''" ["S'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2360 ("S,," ["S,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2361 ("S^^" ["S^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2362 ("S~~" ["S~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2363 ("T,," ["T,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2364 ("T//" ["T/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2365 ("T~~" ["T~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2366 ("U''" ["U'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2367 ("U,," ["U,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2368 ("U--" ["U-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2369 ("U.." ["U."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2370 ("U::" ["U:"])
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 ("Y''" ["Y'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2376 ("Y\"\"" ["Y\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2377 ("Y==" ["Y="])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2378 ("Z''" ["Z'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2379 ("Z.." ["Z."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2380 ("Z~~" ["Z~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2381 ("a''" ["a'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2382 ("a,," ["a,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2383 ("a--" ["a-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2384 ("a//" ["a/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2385 ("a\"\"" ["a\""])
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 ("c''" ["c'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2391 ("c,," ["c,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2392 ("c.." ["c."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2393 ("c^^" ["c^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2394 ("c~~" ["c~"])
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 ("d//" ["d/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2397 ("d~~" ["d~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2398 ("e''" ["e'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2399 ("e,," ["e,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2400 ("e--" ["e-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2401 ("e.." ["e."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2402 ("e//" ["e/"])
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 ("g,," ["g,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2409 ("g.." ["g."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2410 ("g^^" ["g^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2411 ("g~~" ["g~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2412 ("h//" ["h/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2413 ("h^^" ["h^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2414 ("i''" ["i'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2415 ("i,," ["i,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2416 ("i--" ["i-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2417 ("i.." ["i."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2418 ("i\"\"" ["i\""])
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 ("j^^" ["j^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2423 ("k,," ["k,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2424 ("k//" ["k/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2425 ("l''" ["l'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2426 ("l,," ["l,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2427 ("l//" ["l/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2428 ("l~~" ["l~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2429 ("n''" ["n'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2430 ("n,," ["n,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2431 ("n//" ["n/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2432 ("n~~" ["n~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2433 ("o''" ["o'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2434 ("o--" ["o-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2435 ("o//" ["o/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2436 ("o::" ["o:"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2437 ("o\"\"" ["o\""])
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 ("r''" ["r'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2443 ("r,," ["r,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2444 ("r~~" ["r~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2445 ("s''" ["s'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2446 ("s,," ["s,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2447 ("s//" ["s/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2448 ("s^^" ["s^"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2449 ("s~~" ["s~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2450 ("t,," ["t,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2451 ("t//" ["t/"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2452 ("t~~" ["t~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2453 ("u''" ["u'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2454 ("u,," ["u,"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2455 ("u--" ["u-"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2456 ("u.." ["u."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2457 ("u::" ["u:"])
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 ("y''" ["y'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2463 ("y\"\"" ["y\""])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2464 ("z''" ["z'"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2465 ("z.." ["z."])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2466 ("z~~" ["z~"])
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2467 )
c0e00465bf97 ("latin-postfix"): New.
Dave Love <fx@gnu.org>
parents: 42035
diff changeset
2468
47413
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2469 ;; Derived from Slovenian.kmap from Yudit
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2470 ;; attributed as: 2001-11-11 Roman Maurer <roman.maurer@amis.net>
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2471 (quail-define-package
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2472 "slovenian" "Slovenian" "Sl" t
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2473 "Slovenian postfix input."
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2474 nil t t t nil nil nil nil nil nil t)
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2475
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2476 (quail-define-rules
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2477 ("C<" ?Č)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2478 ("C'" ?Ć)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2479 ("D;" ?Đ)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2480 ("S<" ?Š)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89398
diff changeset
2481 ("Z<" ?Ž)
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<" ?ž))
47413
e29c465d41ef ("slovenian"): New.
Dave Love <fx@gnu.org>
parents: 46668
diff changeset
2487
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 47413
diff changeset
2488 ;;; arch-tag: 170180fb-9617-4d58-9d51-65ca23c05d94
38453
519983161a46 Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 36837
diff changeset
2489 ;;; latin-post.el ends here