]> code.delx.au - gnu-emacs/blob - leim/quail/latin-alt.el
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-57
[gnu-emacs] / leim / quail / latin-alt.el
1 ;;; latin-alt.el --- Quail package for inputting various European characters -*-coding: utf-8;-*-
2
3 ;; Copyright (C) 1997, 1998, 2001, 2002, 2006 Free Software Foundation, Inc.
4 ;; Copyright (C) 1999
5 ;; National Institute of Advanced Industrial Science and Technology (AIST)
6 ;; Registration Number H14PRO021
7
8 ;; Keywords: multilingual, input method, latin
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;; Author: TAKAHASHI Naoto <ntakahas@etl.go.jp>
28
29 ;;; Commentary:
30
31 ;;; Code:
32
33 (require 'quail)
34
35 (quail-define-package
36 "latin-1-alt-postfix" "Latin-1" "1<" t
37 "Latin-1 character input method with postfix modifiers
38
39 | postfix | examples
40 ------------+---------+----------
41 acute | ' | a' -> á
42 grave | ` | a` -> à
43 circumflex | ^ | a^ -> â
44 diaeresis | \" | a\" -> ä
45 tilde | ~ | a~ -> ã
46 cedilla | / | c/ -> ç
47 nordic | / | d/ -> ð t/ -> þ a/ -> å e/ -> æ o/ -> ø
48 others | /<> | s/ -> ß ?/ -> ¿ !/ -> ¡
49 | various | << -> « >> -> » o_ -> º a_ -> ª
50
51 It would be natural to use comma for cedillas, but that would be
52 inconvenient in practice because commas are needed very often after a
53 letter.
54
55 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
56 " nil t nil nil nil nil nil nil nil nil t)
57
58 (quail-define-rules
59 ("A`" ?À)
60 ("A'" ?Á)
61 ("A^" ?Â)
62 ("A~" ?Ã)
63 ("A\"" ?Ä)
64 ("A/" ?Å)
65 ("a`" ?à)
66 ("a'" ?á)
67 ("a^" ?â)
68 ("a~" ?ã)
69 ("a\"" ?ä)
70 ("a/" ?å)
71 ("E`" ?È)
72 ("E'" ?É)
73 ("E^" ?Ê)
74 ("E\"" ?Ë)
75 ("E/" ?Æ)
76 ("e`" ?è)
77 ("e'" ?é)
78 ("e^" ?ê)
79 ("e\"" ?ë)
80 ("e/" ?æ)
81 ("I`" ?Ì)
82 ("i`" ?ì)
83 ("I'" ?Í)
84 ("i'" ?í)
85 ("I^" ?Î)
86 ("i^" ?î)
87 ("I\"" ?Ï)
88 ("i\"" ?ï)
89 ("O`" ?Ò)
90 ("o`" ?ò)
91 ("O'" ?Ó)
92 ("o'" ?ó)
93 ("O^" ?Ô)
94 ("o^" ?ô)
95 ("O~" ?Õ)
96 ("o~" ?õ)
97 ("O\"" ?Ö)
98 ("o\"" ?ö)
99 ("O/" ?Ø)
100 ("o/" ?ø)
101 ("U`" ?Ù)
102 ("u`" ?ù)
103 ("U'" ?Ú)
104 ("u'" ?ú)
105 ("U^" ?Û)
106 ("u^" ?û)
107 ("U\"" ?Ü)
108 ("u\"" ?ü)
109 ("Y'" ?Ý)
110 ("y'" ?ý)
111 ("y\"" ?ÿ)
112 ("D/" ?Ð)
113 ("d/" ?ð)
114 ("T/" ?Þ)
115 ("t/" ?þ)
116 ("s/" ?ß)
117 ("C/" ?Ç)
118 ("c/" ?ç)
119 ("N~" ?Ñ)
120 ("n~" ?ñ)
121 ("?/" ?¿)
122 ("!/" ?¡)
123 ("<<" ?«)
124 (">>" ?»)
125 ("o_" ?º)
126 ("a_" ?ª)
127
128 ("A``" ["A`"])
129 ("A''" ["A'"])
130 ("A^^" ["A^"])
131 ("A~~" ["A~"])
132 ("A\"\"" ["A\""])
133 ("A//" ["A/"])
134 ("a``" ["a`"])
135 ("a''" ["a'"])
136 ("a^^" ["a^"])
137 ("a~~" ["a~"])
138 ("a\"\"" ["a\""])
139 ("a//" ["a/"])
140 ("E``" ["E`"])
141 ("E''" ["E'"])
142 ("E^^" ["E^"])
143 ("E\"\"" ["E\""])
144 ("E//" ["E/"])
145 ("e``" ["e`"])
146 ("e''" ["e'"])
147 ("e^^" ["e^"])
148 ("e\"\"" ["e\""])
149 ("e//" ["e/"])
150 ("I``" ["I`"])
151 ("i``" ["i`"])
152 ("I''" ["I'"])
153 ("i''" ["i'"])
154 ("I^^" ["I^"])
155 ("i^^" ["i^"])
156 ("I\"\"" ["I\""])
157 ("i\"\"" ["i\""])
158 ("O``" ["O`"])
159 ("o``" ["o`"])
160 ("O''" ["O'"])
161 ("o''" ["o'"])
162 ("O^^" ["O^"])
163 ("o^^" ["o^"])
164 ("O~~" ["O~"])
165 ("o~~" ["o~"])
166 ("O\"\"" ["O\""])
167 ("o\"\"" ["o\""])
168 ("O//" ["O/"])
169 ("o//" ["o/"])
170 ("U``" ["U`"])
171 ("u``" ["u`"])
172 ("U''" ["U'"])
173 ("u''" ["u'"])
174 ("U^^" ["U^"])
175 ("u^^" ["u^"])
176 ("U\"\"" ["U\""])
177 ("u\"\"" ["u\""])
178 ("Y''" ["Y'"])
179 ("y''" ["y'"])
180 ("y\"\"" ["y\""])
181 ("D//" ["D/"])
182 ("d//" ["d/"])
183 ("T//" ["T/"])
184 ("t//" ["t/"])
185 ("s//" ["s/"])
186 ("C//" ["C/"])
187 ("c//" ["c/"])
188 ("N~~" ["N~"])
189 ("n~~" ["n~"])
190 ("?//" ["?/"])
191 ("!//" ["!/"])
192 ("<<<" ["<<"])
193 (">>>" [">>"])
194 ("o__" ["o_"])
195 ("a__" ["a_"])
196 )
197
198 (quail-define-package
199 "latin-2-alt-postfix" "Latin-2" "2<" t
200 "Latin-2 character input method with postfix modifiers
201
202 | postfix | examples
203 ------------+---------+----------
204 acute | ' | a' -> á
205 ogonek | ` | a` -> ą
206 diaeresis | \" | a\" -> ä
207 circumflex | ^ | a^ -> â
208 breve | ~ | a~ -> ă
209 cedilla | ` | c` -> ç
210 caron | ~ | c~ -> č
211 dbl. acute | : | o: -> ő
212 ring | ` | u` -> ů
213 dot | ` | z` -> ż
214 stroke | / | d/ -> đ
215 others | / | s/ -> ß
216
217 It would be natural to use period and comma for dots/rings and
218 cedillas/ogoneks, but that would inconvenient in practice, because
219 periods and commas are needed very often after a letter.
220
221 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
222 " nil t nil nil nil nil nil nil nil nil t)
223
224 (quail-define-rules
225 ("A'" ?Á)
226 ("A`" ?Ą)
227 ("A\"" ?Ä)
228 ("A^" ?Â)
229 ("A~" ?Ă)
230 ("C'" ?Ć)
231 ("C`" ?Ç)
232 ("C~" ?Č)
233 ("D/" ?Đ)
234 ("D~" ?Ď)
235 ("E'" ?É)
236 ("E`" ?Ę)
237 ("E\"" ?Ë)
238 ("E~" ?Ě)
239 ("I'" ?Í)
240 ("I^" ?Î)
241 ("L'" ?Ĺ)
242 ("L/" ?Ł)
243 ("L~" ?Ľ)
244 ("N'" ?Ń)
245 ("N~" ?Ň)
246 ("O'" ?Ó)
247 ("O:" ?Ő)
248 ("O\"" ?Ö)
249 ("O^" ?Ô)
250 ("R'" ?Ŕ)
251 ("R~" ?Ř)
252 ("S'" ?Ś)
253 ("S`" ?Ş)
254 ("S~" ?Š)
255 ("T`" ?Ţ)
256 ("T~" ?Ť)
257 ("U'" ?Ú)
258 ("U:" ?Ű)
259 ("U\"" ?Ü)
260 ("U`" ?Ů)
261 ("Y'" ?Ý)
262 ("Z'" ?Ź)
263 ("Z`" ?Ż)
264 ("Z~" ?Ž)
265 ("a'" ?á)
266 ("a`" ?ą)
267 ("a\"" ?ä)
268 ("a^" ?â)
269 ("a~" ?ă)
270 ("c'" ?ć)
271 ("c`" ?ç)
272 ("c~" ?č)
273 ("d/" ?đ)
274 ("d~" ?ď)
275 ("e'" ?é)
276 ("e`" ?ę)
277 ("e\"" ?ë)
278 ("e~" ?ě)
279 ("i'" ?í)
280 ("i^" ?î)
281 ("l'" ?ĺ)
282 ("l/" ?ł)
283 ("l~" ?ľ)
284 ("n'" ?ń)
285 ("n~" ?ň)
286 ("o'" ?ó)
287 ("o:" ?ő)
288 ("o\"" ?ö)
289 ("o^" ?ô)
290 ("r'" ?ŕ)
291 ("r~" ?ř)
292 ("s'" ?ś)
293 ("s`" ?ş)
294 ("s/" ?ß)
295 ("s~" ?š)
296 ("t`" ?ţ)
297 ("t~" ?ť)
298 ("u'" ?ú)
299 ("u:" ?ű)
300 ("u\"" ?ü)
301 ("u`" ?ů)
302 ("y'" ?ý)
303 ("z'" ?ź)
304 ("z`" ?ż)
305 ("z~" ?ž)
306
307 ("A''" ["A'"])
308 ("A``" ["A`"])
309 ("A\"\"" ["A\""])
310 ("A^^" ["A^"])
311 ("A~~" ["A~"])
312 ("C''" ["C'"])
313 ("C``" ["C`"])
314 ("C~~" ["C~"])
315 ("D//" ["D/"])
316 ("D~~" ["D~"])
317 ("E''" ["E'"])
318 ("E``" ["E`"])
319 ("E\"\"" ["E\""])
320 ("E~~" ["E~"])
321 ("I''" ["I'"])
322 ("I^^" ["I^"])
323 ("L''" ["L'"])
324 ("L//" ["L/"])
325 ("L~~" ["L~"])
326 ("N''" ["N'"])
327 ("N~~" ["N~"])
328 ("O''" ["O'"])
329 ("O::" ["O:"])
330 ("O\"\"" ["O\""])
331 ("O^^" ["O^"])
332 ("R''" ["R'"])
333 ("R~~" ["R~"])
334 ("S''" ["S'"])
335 ("S``" ["S`"])
336 ("S~~" ["S~"])
337 ("T``" ["T`"])
338 ("T~~" ["T~"])
339 ("U''" ["U'"])
340 ("U::" ["U:"])
341 ("U\"\"" ["U\""])
342 ("U``" ["U`"])
343 ("Y''" ["Y'"])
344 ("Z''" ["Z'"])
345 ("Z``" ["Z`"])
346 ("Z~~" ["Z~"])
347 ("a''" ["a'"])
348 ("a``" ["a`"])
349 ("a\"\"" ["a\""])
350 ("a^^" ["a^"])
351 ("a~~" ["a~"])
352 ("c''" ["c'"])
353 ("c``" ["c`"])
354 ("c~~" ["c~"])
355 ("d//" ["d/"])
356 ("d~~" ["d~"])
357 ("e''" ["e'"])
358 ("e``" ["e`"])
359 ("e\"\"" ["e\""])
360 ("e~~" ["e~"])
361 ("i''" ["i'"])
362 ("i^^" ["i^"])
363 ("l''" ["l'"])
364 ("l//" ["l/"])
365 ("l~~" ["l~"])
366 ("n''" ["n'"])
367 ("n~~" ["n~"])
368 ("o''" ["o'"])
369 ("o::" ["o:"])
370 ("o\"\"" ["o\""])
371 ("o^^" ["o^"])
372 ("r''" ["r'"])
373 ("r~~" ["r~"])
374 ("s''" ["s'"])
375 ("s``" ["s`"])
376 ("s//" ["s/"])
377 ("s~~" ["s~"])
378 ("t``" ["t`"])
379 ("t~~" ["t~"])
380 ("u''" ["u'"])
381 ("u::" ["u:"])
382 ("u\"\"" ["u\""])
383 ("u``" ["u`"])
384 ("y''" ["y'"])
385 ("z''" ["z'"])
386 ("z``" ["z`"])
387 ("z~~" ["z~"])
388 )
389
390 (quail-define-package
391 "latin-3-alt-postfix" "Latin-3" "3<" t
392 "Latin-3 character input method with postfix modifiers
393
394 | postfix | examples
395 ------------+---------+----------
396 acute | ' | a' -> á
397 grave | ` | a` -> à
398 circumflex | ^ | a^ -> â
399 diaeresis | \" | a\" -> ä
400 dot | / | c/ -> ċ i/ -> ı I/ -> İ
401 cedilla | ` | c` -> ç
402 breve | ~ | g~ -> ğ
403 tilde | ~ | n~ -> ñ
404 stroke | / | h/ -> ħ
405 others | / | s/ -> ß
406
407 It would be natural to use period and comma for dots and cedillas, but
408 that would inconvenient in practice, because periods and commas are
409 needed very often after a letter.
410
411 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
412 " nil t nil nil nil nil nil nil nil nil t)
413
414 (quail-define-rules
415 ("A`" ?À)
416 ("A'" ?Á)
417 ("A^" ?Â)
418 ("A\"" ?Ä)
419 ("C/" ?Ċ)
420 ("C^" ?Ĉ)
421 ("C`" ?Ç)
422 ("E`" ?È)
423 ("E'" ?É)
424 ("E^" ?Ê)
425 ("E\"" ?Ë)
426 ("G~" ?Ğ)
427 ("G/" ?Ġ)
428 ("G^" ?Ĝ)
429 ("H/" ?Ħ)
430 ("H^" ?Ĥ)
431 ("I/" ?İ)
432 ("I`" ?Ì)
433 ("I'" ?Í)
434 ("I^" ?Î)
435 ("I\"" ?Ï)
436 ("J^" ?Ĵ)
437 ("N~" ?Ñ)
438 ("O`" ?Ò)
439 ("O'" ?Ó)
440 ("O^" ?Ô)
441 ("O\"" ?Ö)
442 ("S`" ?Ş)
443 ("S^" ?Ŝ)
444 ("U`" ?Ù)
445 ("U'" ?Ú)
446 ("U^" ?Û)
447 ("U\"" ?Ü)
448 ("U~" ?Ŭ)
449 ("Z/" ?Ż)
450 ("a`" ?à)
451 ("a'" ?á)
452 ("a^" ?â)
453 ("a\"" ?ä)
454 ("c/" ?ċ)
455 ("c^" ?ĉ)
456 ("c`" ?ç)
457 ("e`" ?è)
458 ("e'" ?é)
459 ("e^" ?ê)
460 ("e\"" ?ë)
461 ("g~" ?ğ)
462 ("g/" ?ġ)
463 ("g^" ?ĝ)
464 ("h/" ?ħ)
465 ("h^" ?ĥ)
466 ("i/" ?ı)
467 ("i`" ?ì)
468 ("i'" ?í)
469 ("i^" ?î)
470 ("i\"" ?ï)
471 ("j^" ?ĵ)
472 ("n~" ?ñ)
473 ("o`" ?ò)
474 ("o'" ?ó)
475 ("o^" ?ô)
476 ("o\"" ?ö)
477 ("s`" ?ş)
478 ("s/" ?ß)
479 ("s^" ?ŝ)
480 ("u`" ?ù)
481 ("u'" ?ú)
482 ("u^" ?û)
483 ("u\"" ?ü)
484 ("u~" ?ŭ)
485 ("z/" ?ż)
486
487 ("A``" ["A`"])
488 ("A''" ["A'"])
489 ("A^^" ["A^"])
490 ("A\"\"" ["A\""])
491 ("C//" ["C/"])
492 ("C^^" ["C^"])
493 ("C``" ["C`"])
494 ("E``" ["E`"])
495 ("E''" ["E'"])
496 ("E^^" ["E^"])
497 ("E\"\"" ["E\""])
498 ("G~~" ["G~"])
499 ("G//" ["G/"])
500 ("G^^" ["G^"])
501 ("H//" ["H/"])
502 ("H^^" ["H^"])
503 ("I//" ["I/"])
504 ("I``" ["I`"])
505 ("I''" ["I'"])
506 ("I^^" ["I^"])
507 ("I\"\"" ["I\""])
508 ("J^^" ["J^"])
509 ("N~~" ["N~"])
510 ("O``" ["O`"])
511 ("O''" ["O'"])
512 ("O^^" ["O^"])
513 ("O\"\"" ["O\""])
514 ("S``" ["S`"])
515 ("S^^" ["S^"])
516 ("U``" ["U`"])
517 ("U''" ["U'"])
518 ("U^^" ["U^"])
519 ("U\"\"" ["U\""])
520 ("U~~" ["U~"])
521 ("Z//" ["Z/"])
522 ("a``" ["a`"])
523 ("a''" ["a'"])
524 ("a^^" ["a^"])
525 ("a\"\"" ["a\""])
526 ("c//" ["c/"])
527 ("c^^" ["c^"])
528 ("c``" ["c`"])
529 ("e``" ["e`"])
530 ("e''" ["e'"])
531 ("e^^" ["e^"])
532 ("e\"\"" ["e\""])
533 ("g~~" ["g~"])
534 ("g//" ["g/"])
535 ("g^^" ["g^"])
536 ("h//" ["h/"])
537 ("h^^" ["h^"])
538 ("i//" ["i/"])
539 ("i``" ["i`"])
540 ("i''" ["i'"])
541 ("i^^" ["i^"])
542 ("i\"\"" ["i\""])
543 ("j^^" ["j^"])
544 ("n~~" ["n~"])
545 ("o``" ["o`"])
546 ("o''" ["o'"])
547 ("o^^" ["o^"])
548 ("o\"\"" ["o\""])
549 ("s``" ["s`"])
550 ("s//" ["s/"])
551 ("s^^" ["s^"])
552 ("u``" ["u`"])
553 ("u''" ["u'"])
554 ("u^^" ["u^"])
555 ("u\"\"" ["u\""])
556 ("u~~" ["u~"])
557 ("z//" ["z/"])
558 )
559
560 (quail-define-package
561 "latin-4-alt-postfix" "Latin-4" "4<" t
562 "Latin-4 characters input method with postfix modifiers
563
564 | postfix | examples
565 ------------+---------+----------
566 acute | ' | a' -> á
567 circumflex | ^ | a^ -> â
568 diaeresis | \" | a\" -> ä
569 ogonek | ` | a` -> ą
570 macron | - | a- -> ā
571 tilde | ~ | a~ -> ã
572 caron | ~ | c~ -> č
573 dot | ~ | e~ -> ė
574 cedilla | ` | k` -> ķ g` -> ģ
575 stroke | / | d/ -> đ
576 nordic | / | a/ -> å e/ -> æ o/ -> ø
577 others | / | s/ -> ß n/ -> ŋ k/ -> ĸ
578
579 It would be natural to use period and comma for dots and
580 cedillas/ogoneks, but that would inconvenient in practice, because
581 periods and commas are needed very often after a letter.
582
583 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
584 " nil t nil nil nil nil nil nil nil nil t)
585
586 (quail-define-rules
587 ("A`" ?Ą)
588 ("A-" ?Ā)
589 ("A'" ?Á)
590 ("A^" ?Â)
591 ("A~" ?Ã)
592 ("A\"" ?Ä)
593 ("A/" ?Å)
594 ("C~" ?Č)
595 ("D/" ?Đ)
596 ("E/" ?Æ)
597 ("E-" ?Ē)
598 ("E'" ?É)
599 ("E`" ?Ę)
600 ("E\"" ?Ë)
601 ("E~" ?Ė)
602 ("G`" ?Ģ)
603 ("I~" ?Ĩ)
604 ("I`" ?Į)
605 ("I'" ?Í)
606 ("I^" ?Î)
607 ("I-" ?Ī)
608 ("K`" ?Ķ)
609 ("L`" ?Ļ)
610 ("N/" ?Ŋ)
611 ("N`" ?Ņ)
612 ("O-" ?Ō)
613 ("O^" ?Ô)
614 ("O~" ?Õ)
615 ("O\"" ?Ö)
616 ("O/" ?Ø)
617 ("R`" ?Ŗ)
618 ("S~" ?Š)
619 ("T/" ?Ŧ)
620 ("U`" ?Ų)
621 ("U'" ?Ú)
622 ("U^" ?Û)
623 ("U\"" ?Ü)
624 ("U~" ?Ũ)
625 ("U-" ?Ū)
626 ("Z~" ?Ž)
627 ("a`" ?ą)
628 ("a-" ?ā)
629 ("a'" ?á)
630 ("a^" ?â)
631 ("a~" ?ã)
632 ("a\"" ?ä)
633 ("a/" ?å)
634 ("c~" ?č)
635 ("d/" ?đ)
636 ("e/" ?æ)
637 ("e-" ?ē)
638 ("e'" ?é)
639 ("e`" ?ę)
640 ("e\"" ?ë)
641 ("e~" ?ė)
642 ("g`" ?ģ)
643 ("i~" ?ĩ)
644 ("i`" ?į)
645 ("i'" ?í)
646 ("i^" ?î)
647 ("i-" ?ī)
648 ("k/" ?ĸ)
649 ("k`" ?ķ)
650 ("l`" ?ļ)
651 ("n/" ?ŋ)
652 ("n`" ?ņ)
653 ("o-" ?ō)
654 ("o^" ?ô)
655 ("o~" ?õ)
656 ("o\"" ?ö)
657 ("o/" ?ø)
658 ("r`" ?ŗ)
659 ("s/" ?ß)
660 ("s~" ?š)
661 ("t/" ?ŧ)
662 ("u`" ?ų)
663 ("u'" ?ú)
664 ("u^" ?û)
665 ("u\"" ?ü)
666 ("u~" ?ũ)
667 ("u-" ?ū)
668 ("z~" ?ž)
669
670 ("A``" ["A`"])
671 ("A--" ["A-"])
672 ("A''" ["A'"])
673 ("A^^" ["A^"])
674 ("A~~" ["A~"])
675 ("A\"\"" ["A\""])
676 ("A//" ["A/"])
677 ("C~~" ["C~"])
678 ("D//" ["D/"])
679 ("E//" ["E/"])
680 ("E--" ["E-"])
681 ("E''" ["E'"])
682 ("E``" ["E`"])
683 ("E\"\"" ["E\""])
684 ("E~~" ["E~"])
685 ("G``" ["G`"])
686 ("I~~" ["I~"])
687 ("I``" ["I`"])
688 ("I''" ["I'"])
689 ("I^^" ["I^"])
690 ("I--" ["I-"])
691 ("K``" ["K`"])
692 ("L``" ["L`"])
693 ("N//" ["N/"])
694 ("N``" ["N`"])
695 ("O--" ["O-"])
696 ("O^^" ["O^"])
697 ("O~~" ["O~"])
698 ("O\"\"" ["O\""])
699 ("O//" ["O/"])
700 ("R``" ["R`"])
701 ("S~~" ["S~"])
702 ("T//" ["T/"])
703 ("U``" ["U`"])
704 ("U''" ["U'"])
705 ("U^^" ["U^"])
706 ("U\"\"" ["U\""])
707 ("U~~" ["U~"])
708 ("U--" ["U-"])
709 ("Z~~" ["Z~"])
710 ("a``" ["a`"])
711 ("a--" ["a-"])
712 ("a''" ["a'"])
713 ("a^^" ["a^"])
714 ("a~~" ["a~"])
715 ("a\"\"" ["a\""])
716 ("a//" ["a/"])
717 ("c~~" ["c~"])
718 ("d//" ["d/"])
719 ("e//" ["e/"])
720 ("e--" ["e-"])
721 ("e''" ["e'"])
722 ("e``" ["e`"])
723 ("e\"\"" ["e\""])
724 ("e~~" ["e~"])
725 ("g``" ["g`"])
726 ("i~~" ["i~"])
727 ("i``" ["i`"])
728 ("i''" ["i'"])
729 ("i^^" ["i^"])
730 ("i--" ["i-"])
731 ("k//" ["k/"])
732 ("k``" ["k`"])
733 ("l``" ["l`"])
734 ("n//" ["n/"])
735 ("n``" ["n`"])
736 ("o--" ["o-"])
737 ("o^^" ["o^"])
738 ("o~~" ["o~"])
739 ("o\"\"" ["o\""])
740 ("o//" ["o/"])
741 ("r``" ["r`"])
742 ("s//" ["s/"])
743 ("s~~" ["s~"])
744 ("t//" ["t/"])
745 ("u``" ["u`"])
746 ("u''" ["u'"])
747 ("u^^" ["u^"])
748 ("u\"\"" ["u\""])
749 ("u~~" ["u~"])
750 ("u--" ["u-"])
751 ("z~~" ["z~"])
752 )
753
754 (quail-define-package
755 "latin-5-alt-postfix" "Latin-5" "5<" t
756 "Latin-5 characters input method with postfix modifiers
757
758 | postfix | examples
759 ------------+---------+----------
760 acute | ' | a' -> á
761 grave | ` | a` -> à
762 circumflex | ^ | a^ -> â
763 diaeresis | \" | a\" -> ä
764 tilde | ~ | a~ -> ã
765 breve | ~ | g~ -> ğ
766 cedilla | ` | c` -> ç
767 dot | / | i/ -> ı I/ -> İ
768 nordic | / | a/ -> å e/ -> æ o/ -> ø
769 others | / | s/ -> ß
770
771 It would be natural to use period and comma for dots and cedillas, but
772 that would inconvenient in practice, because periods and commas are
773 needed very often after a letter.
774
775 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
776 " nil t nil nil nil nil nil nil nil nil t)
777
778 (quail-define-rules
779 ("A'" ?Á)
780 ("A/" ?Å)
781 ("A\"" ?Ä)
782 ("A^" ?Â)
783 ("A`" ?À)
784 ("A~" ?Ã)
785 ("C`" ?Ç)
786 ("E'" ?É)
787 ("E/" ?Æ)
788 ("E\"" ?Ë)
789 ("E^" ?Ê)
790 ("E`" ?È)
791 ("G~" ?Ğ)
792 ("I'" ?Í)
793 ("I/" ?İ)
794 ("I\"" ?Ï)
795 ("I^" ?Î)
796 ("I`" ?Ì)
797 ("N~" ?Ñ)
798 ("O'" ?Ó)
799 ("O/" ?Ø)
800 ("O\"" ?Ö)
801 ("O^" ?Ô)
802 ("O`" ?Ò)
803 ("O~" ?Õ)
804 ("S`" ?Ş)
805 ("U'" ?Ú)
806 ("U\"" ?Ü)
807 ("U^" ?Û)
808 ("U`" ?Ù)
809 ("a'" ?á)
810 ("a/" ?å)
811 ("a\"" ?ä)
812 ("a^" ?â)
813 ("a`" ?à)
814 ("a~" ?ã)
815 ("c`" ?ç)
816 ("e'" ?é)
817 ("e/" ?æ)
818 ("e\"" ?ë)
819 ("e^" ?ê)
820 ("e`" ?è)
821 ("g~" ?ğ)
822 ("i'" ?í)
823 ("i/" ?ı)
824 ("i\"" ?ï)
825 ("i^" ?î)
826 ("i`" ?ì)
827 ("n~" ?ñ)
828 ("o'" ?ó)
829 ("o/" ?ø)
830 ("o\"" ?ö)
831 ("o^" ?ô)
832 ("o`" ?ò)
833 ("o~" ?õ)
834 ("s`" ?ş)
835 ("s/" ?ß)
836 ("u'" ?ú)
837 ("u\"" ?ü)
838 ("u^" ?û)
839 ("u`" ?ù)
840 ("y\"" ?ÿ)
841
842 ("A''" ["A'"])
843 ("A//" ["A/"])
844 ("A\"\"" ["A\""])
845 ("A^^" ["A^"])
846 ("A``" ["A`"])
847 ("A~~" ["A~"])
848 ("C``" ["C`"])
849 ("E''" ["E'"])
850 ("E//" ["E/"])
851 ("E\"\"" ["E\""])
852 ("E^^" ["E^"])
853 ("E``" ["E`"])
854 ("G~~" ["G~"])
855 ("I''" ["I'"])
856 ("I//" ["I/"])
857 ("I\"\"" ["I\""])
858 ("I^^" ["I^"])
859 ("I``" ["I`"])
860 ("N~~" ["N~"])
861 ("O''" ["O'"])
862 ("O//" ["O/"])
863 ("O\"\"" ["O\""])
864 ("O^^" ["O^"])
865 ("O``" ["O`"])
866 ("O~~" ["O~"])
867 ("S``" ["S`"])
868 ("U''" ["U'"])
869 ("U\"\"" ["U\""])
870 ("U^^" ["U^"])
871 ("U``" ["U`"])
872 ("a''" ["a'"])
873 ("a//" ["a/"])
874 ("a\"\"" ["a\""])
875 ("a^^" ["a^"])
876 ("a``" ["a`"])
877 ("a~~" ["a~"])
878 ("c``" ["c`"])
879 ("e''" ["e'"])
880 ("e//" ["e/"])
881 ("e\"\"" ["e\""])
882 ("e^^" ["e^"])
883 ("e``" ["e`"])
884 ("g~~" ["g~"])
885 ("i''" ["i'"])
886 ("i//" ["i/"])
887 ("i\"\"" ["i\""])
888 ("i^^" ["i^"])
889 ("i``" ["i`"])
890 ("n~~" ["n~"])
891 ("o''" ["o'"])
892 ("o//" ["o/"])
893 ("o\"\"" ["o\""])
894 ("o^^" ["o^"])
895 ("o``" ["o`"])
896 ("o~~" ["o~"])
897 ("s``" ["s`"])
898 ("s//" ["s/"])
899 ("u''" ["u'"])
900 ("u\"\"" ["u\""])
901 ("u^^" ["u^"])
902 ("u``" ["u`"])
903 ("y\"\"" ["y\""])
904 )
905
906 (quail-define-package
907 "danish-alt-postfix" "Latin-1" "DA<" t
908 "Danish input method (rule: AE -> Æ, OE -> Ø, AA -> Å, E' -> É)
909
910 Doubling the postfix separates the letter and postfix: e.g. aee -> ae
911 "
912 nil t nil nil nil nil nil nil nil nil t)
913
914 (quail-define-rules
915 ("AE" ?Æ)
916 ("ae" ?æ)
917 ("OE" ?Ø)
918 ("oe" ?ø)
919 ("AA" ?Å)
920 ("aa" ?å)
921 ("E'" ?É)
922 ("e'" ?é)
923
924 ("AEE" ["AE"])
925 ("aee" ["ae"])
926 ("OEE" ["OE"])
927 ("oee" ["oe"])
928 ("AAA" ["AA"])
929 ("aaa" ["aa"])
930 ("E''" ["E'"])
931 ("e''" ["e'"])
932 )
933
934 (quail-define-package
935 "esperanto-alt-postfix" "Latin-3" "EO<" t
936 "Esperanto input method with postfix modifiers
937
938 A following ^ or x will produce an accented character,
939 e.g. c^ -> ĉ gx -> ĝ u^ -> ŭ.
940
941 Doubling the postfix separates the letter and postfix,
942 e.g. a'' -> a'.
943 " nil t nil nil nil nil nil nil nil nil t)
944
945 (quail-define-rules
946 ("Cx" ?Ĉ)
947 ("C^" ?Ĉ)
948 ("cx" ?ĉ)
949 ("c^" ?ĉ)
950 ("Gx" ?Ĝ)
951 ("G^" ?Ĝ)
952 ("gx" ?ĝ)
953 ("g^" ?ĝ)
954 ("Hx" ?Ĥ)
955 ("H^" ?Ĥ)
956 ("hx" ?ĥ)
957 ("h^" ?ĥ)
958 ("Jx" ?Ĵ)
959 ("J^" ?Ĵ)
960 ("jx" ?ĵ)
961 ("j^" ?ĵ)
962 ("Sx" ?Ŝ)
963 ("S^" ?Ŝ)
964 ("sx" ?ŝ)
965 ("s^" ?ŝ)
966 ("Ux" ?Ŭ)
967 ("U^" ?Ŭ)
968 ("ux" ?ŭ)
969 ("u^" ?ŭ)
970
971 ("Cxx" ["Cx"])
972 ("C^^" ["C^"])
973 ("cxx" ["cx"])
974 ("c^^" ["c^"])
975 ("Gxx" ["Gx"])
976 ("G^^" ["G^"])
977 ("gxx" ["gx"])
978 ("g^^" ["g^"])
979 ("Hxx" ["Hx"])
980 ("H^^" ["H^"])
981 ("hxx" ["hx"])
982 ("h^^" ["h^"])
983 ("Jxx" ["Jx"])
984 ("J^^" ["J^"])
985 ("jxx" ["jx"])
986 ("j^^" ["j^"])
987 ("Sxx" ["Sx"])
988 ("S^^" ["S^"])
989 ("sxx" ["sx"])
990 ("s^^" ["s^"])
991 ("Uxx" ["Ux"])
992 ("U^^" ["U^"])
993 ("uxx" ["ux"])
994 ("u^^" ["u^"])
995 )
996
997 (quail-define-package
998 "finnish-alt-postfix" "Latin-1" "FI<" t
999 "Finnish (Suomi) input method
1000
1001 AE -> Ä
1002 AEE -> AE
1003 OE -> Ö
1004 OEE -> OE
1005 "
1006 nil t nil nil nil nil nil nil nil nil t)
1007
1008 (quail-define-rules
1009 ("AE" ?Ä)
1010 ("ae" ?ä)
1011 ("OE" ?Ö)
1012 ("oe" ?ö)
1013
1014 ("AEE" ["AE"])
1015 ("aee" ["ae"])
1016 ("OEE" ["OE"])
1017 ("oee" ["oe"])
1018 )
1019
1020 (quail-define-package
1021 "french-alt-postfix" "French" "FR<" t
1022 "French (Français) input method with postfix modifiers
1023
1024 ` pour grave, ' pour aigu, ^ pour circonflexe, et \" pour tréma.
1025 Par exemple: a` -> à e' -> é.
1026
1027 Ç, «, et » sont produits par C/, <<, et >>.
1028
1029 En doublant la frappe des diacritiques, ils s'isoleront de la lettre.
1030 Par exemple: e'' -> e'
1031
1032 <e dans l'o> n'est pas disponible."
1033 nil t nil nil nil nil nil nil nil nil t)
1034
1035 (quail-define-rules
1036 ("A`" ?À)
1037 ("A^" ?Â)
1038 ("a`" ?à)
1039 ("a^" ?â)
1040 ("E`" ?È)
1041 ("E'" ?É)
1042 ("E^" ?Ê)
1043 ("E\"" ?Ë)
1044 ("e`" ?è)
1045 ("e'" ?é)
1046 ("e^" ?ê)
1047 ("e\"" ?ë)
1048 ("I^" ?Î)
1049 ("I\"" ?Ï)
1050 ("i^" ?î)
1051 ("i\"" ?ï)
1052 ("O^" ?Ô)
1053 ("o^" ?ô)
1054 ("U`" ?Ù)
1055 ("U^" ?Û)
1056 ("U\"" ?Ü)
1057 ("u`" ?ù)
1058 ("u^" ?û)
1059 ("u\"" ?ü)
1060 ("C/" ?Ç)
1061 ("c/" ?ç)
1062 ("<<" ?«)
1063 (">>" ?»)
1064
1065 ("A``" ["A`"])
1066 ("A^^" ["A^"])
1067 ("a``" ["a`"])
1068 ("a^^" ["a^"])
1069 ("E``" ["E`"])
1070 ("E''" ["E'"])
1071 ("E^^" ["E^"])
1072 ("E\"\"" ["E\""])
1073 ("e``" ["e`"])
1074 ("e''" ["e'"])
1075 ("e^^" ["e^"])
1076 ("e\"\"" ["e\""])
1077 ("I^^" ["I^"])
1078 ("I\"\"" ["I\""])
1079 ("i^^" ["i^"])
1080 ("i\"\"" ["i\""])
1081 ("O^^" ["O^"])
1082 ("o^^" ["o^"])
1083 ("U``" ["U`"])
1084 ("U^^" ["U^"])
1085 ("U\"\"" ["U\""])
1086 ("u``" ["u`"])
1087 ("u^^" ["u^"])
1088 ("u\"\"" ["u\""])
1089 ("C//" ["C/"])
1090 ("c//" ["c/"])
1091 ("<<<" ["<<"])
1092 (">>>" [">>"])
1093 )
1094
1095 (quail-define-package
1096 "german-alt-postfix" "German" "DE<" t
1097 "German (Deutsch) input method
1098
1099 ae -> ä
1100 aee -> ae
1101 oe -> ö
1102 oee -> oe
1103 ue -> ü
1104 uee -> ue
1105 sz -> ß
1106 szz -> sz
1107 "
1108 nil t nil nil nil nil nil nil nil nil t)
1109
1110 (quail-define-rules
1111 ("AE" ?Ä)
1112 ("ae" ?ä)
1113 ("OE" ?Ö)
1114 ("oe" ?ö)
1115 ("UE" ?Ü)
1116 ("ue" ?ü)
1117 ("sz" ?ß)
1118
1119 ("AEE" ["AE"])
1120 ("aee" ["ae"])
1121 ("OEE" ["OE"])
1122 ("oee" ["oe"])
1123 ("UEE" ["UE"])
1124 ("uee" ["ue"])
1125 ("szz" ["sz"])
1126 )
1127
1128 (quail-define-package
1129 "icelandic-alt-postfix" "Latin-1" "IS<" t
1130 "Icelandic (Íslenska) input method with postfix modifiers
1131
1132 A' -> Á
1133 E' -> É
1134 I' -> Í
1135 O' -> Ó
1136 U' -> Ú
1137 Y' -> Ý
1138 AE -> Æ
1139 OE -> Ö
1140 D/ -> Ð (eth)
1141 T/ -> Þ (thorn)
1142
1143 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
1144 " nil t nil nil nil nil nil nil nil nil t)
1145
1146 (quail-define-rules
1147 ("A'" ?Á)
1148 ("a'" ?á)
1149 ("E'" ?É)
1150 ("e'" ?é)
1151 ("I'" ?Í)
1152 ("i'" ?í)
1153 ("O'" ?Ó)
1154 ("o'" ?ó)
1155 ("U'" ?Ú)
1156 ("u'" ?ú)
1157 ("Y'" ?Ý)
1158 ("y'" ?ý)
1159 ("AE" ?Æ)
1160 ("ae" ?æ)
1161 ("OE" ?Ö)
1162 ("oe" ?ö)
1163 ("D/" ?Ð)
1164 ("d/" ?ð)
1165 ("T/" ?Þ)
1166 ("t/" ?þ)
1167
1168 ("A''" ["A'"])
1169 ("a''" ["a'"])
1170 ("E''" ["E'"])
1171 ("e''" ["e'"])
1172 ("I''" ["I'"])
1173 ("i''" ["i'"])
1174 ("O''" ["O'"])
1175 ("o''" ["o'"])
1176 ("U''" ["U'"])
1177 ("u''" ["u'"])
1178 ("Y''" ["Y'"])
1179 ("y''" ["y'"])
1180 ("AEE" ["AE"])
1181 ("aee" ["ae"])
1182 ("OEE" ["OE"])
1183 ("oee" ["oe"])
1184 ("D//" ["D/"])
1185 ("d//" ["d/"])
1186 ("T//" ["T/"])
1187 ("t//" ["t/"])
1188 )
1189
1190 (quail-define-package
1191 "italian-alt-postfix" "Latin-1" "IT<" t
1192 "Italian (Italiano) input method with postfix modifiers
1193
1194 a' -> á A' -> Á a` -> à A` -> À i^ -> î << -> «
1195 e' -> é E' -> É e` -> è E` -> È I^ -> Î >> -> »
1196 i' -> í I' -> Í i` -> ì I` -> Ì o_ -> º
1197 o' -> ó O' -> Ó o` -> ò O` -> Ò a_ -> ª
1198 u' -> ú U' -> Ú u` -> ù U` -> Ù
1199
1200 This method is for purists who like accents the old way.
1201
1202 Doubling the postfix separates the letter and postfix: e.g. a`` -> a`
1203 " nil t nil nil nil nil nil nil nil nil t)
1204
1205 (quail-define-rules
1206 ("A`" ?À)
1207 ("A'" ?Á)
1208 ("a`" ?à)
1209 ("a'" ?á)
1210 ("E`" ?È)
1211 ("E'" ?É)
1212 ("e`" ?è)
1213 ("e'" ?é)
1214 ("I`" ?Ì)
1215 ("i`" ?ì)
1216 ("I'" ?Í)
1217 ("i'" ?í)
1218 ("I^" ?Î)
1219 ("i^" ?î)
1220 ("O`" ?Ò)
1221 ("o`" ?ò)
1222 ("O'" ?Ó)
1223 ("o'" ?ó)
1224 ("U`" ?Ù)
1225 ("u`" ?ù)
1226 ("U'" ?Ú)
1227 ("u'" ?ú)
1228 ("<<" ?«)
1229 (">>" ?»)
1230 ("o_" ?º)
1231 ("a_" ?ª)
1232
1233 ("A``" ["A`"])
1234 ("A''" ["A'"])
1235 ("a``" ["a`"])
1236 ("a''" ["a'"])
1237 ("E``" ["E`"])
1238 ("E''" ["E'"])
1239 ("e``" ["e`"])
1240 ("e''" ["e'"])
1241 ("I``" ["I`"])
1242 ("i``" ["i`"])
1243 ("I''" ["I'"])
1244 ("i''" ["i'"])
1245 ("I^^" ["I^"])
1246 ("i^^" ["i^"])
1247 ("O``" ["O`"])
1248 ("o``" ["o`"])
1249 ("O''" ["O'"])
1250 ("o''" ["o'"])
1251 ("U``" ["U`"])
1252 ("u``" ["u`"])
1253 ("U''" ["U'"])
1254 ("u''" ["u'"])
1255 ("<<<" ["<<"])
1256 (">>>" [">>"])
1257 ("o__" ["o_"])
1258 ("a__" ["a_"])
1259 )
1260
1261 (quail-define-package
1262 "norwegian-alt-postfix" "Latin-1" "NO<" t
1263 "Norwegian (Norsk) input method (rule: AE->Æ, OE->Ø, AA->Å, E'->É)
1264
1265 Doubling the postfix separates the letter and postfix: e.g. aee -> ae
1266 "
1267 nil t nil nil nil nil nil nil nil nil t)
1268
1269 (quail-define-rules
1270 ("AE" ?Æ)
1271 ("ae" ?æ)
1272 ("OE" ?Ø)
1273 ("oe" ?ø)
1274 ("AA" ?Å)
1275 ("aa" ?å)
1276 ("E'" ?É)
1277 ("e'" ?é)
1278
1279 ("AEE" ["AE"])
1280 ("aee" ["ae"])
1281 ("OEE" ["OE"])
1282 ("oee" ["oe"])
1283 ("AAA" ["AA"])
1284 ("aaa" ["aa"])
1285 ("E''" ["E'"])
1286 ("e''" ["e'"])
1287 )
1288
1289 (quail-define-package
1290 "scandinavian-alt-postfix" "Latin-1" "SC<" t
1291 "Scandinavian input method with postfix modifiers
1292 Supported languages are Swidish, Norwegian, Danish, and Finnish.
1293
1294 ae -> æ
1295 oe -> ø
1296 aa -> å
1297 a\" -> ä
1298 o\" -> ö
1299 e' -> é
1300
1301 Doubling the postfix separates the letter and postfix:
1302 aee -> ae o\"\" -> o\" etc.
1303 " nil t nil nil nil nil nil nil nil nil t)
1304
1305 (quail-define-rules
1306 ("AE" ?Æ)
1307 ("ae" ?æ)
1308 ("OE" ?Ø)
1309 ("oe" ?ø)
1310 ("AA" ?Å)
1311 ("aa" ?å)
1312 ("A\"" ?Ä)
1313 ("a\"" ?ä)
1314 ("O\"" ?Ö)
1315 ("o\"" ?ö)
1316 ("E'" ?É)
1317 ("e'" ?é)
1318
1319 ("AEE" ["AE"])
1320 ("aee" ["ae"])
1321 ("OEE" ["OE"])
1322 ("oee" ["oe"])
1323 ("AAA" ["AA"])
1324 ("aaa" ["aa"])
1325 ("A\"\"" ["A\""])
1326 ("a\"\"" ["a\""])
1327 ("O\"\"" ["O\""])
1328 ("o\"\"" ["o\""])
1329 ("E''" ["E'"])
1330 ("e''" ["e'"])
1331 )
1332
1333 (quail-define-package
1334 "spanish-alt-postfix" "Spanish" "ES<" t
1335 "Spanish (Español) input method with postfix modifiers
1336
1337 A' -> Á
1338 E' -> É
1339 I' -> Í
1340 O' -> Ó
1341 U' -> Ú
1342 N~ -> Ñ
1343 !/ -> ¡
1344 ?/ -> ¿
1345
1346 Doubling the postfix separates the letter and postfix:
1347 a'' -> a' n~~ -> n~, etc.
1348 " nil t nil nil nil nil nil nil nil nil t)
1349
1350 (quail-define-rules
1351 ("A'" ?Á)
1352 ("a'" ?á)
1353 ("E'" ?É)
1354 ("e'" ?é)
1355 ("I'" ?Í)
1356 ("i'" ?í)
1357 ("O'" ?Ó)
1358 ("o'" ?ó)
1359 ("U'" ?Ú)
1360 ("u'" ?ú)
1361 ("N~" ?Ñ)
1362 ("n~" ?ñ)
1363 ("?/" ?¿)
1364 ("!/" ?¡)
1365
1366 ("A''" ["A'"])
1367 ("a''" ["a'"])
1368 ("E''" ["E'"])
1369 ("e''" ["e'"])
1370 ("I''" ["I'"])
1371 ("i''" ["i'"])
1372 ("O''" ["O'"])
1373 ("o''" ["o'"])
1374 ("U''" ["U'"])
1375 ("u''" ["u'"])
1376 ("N~~" ["N~"])
1377 ("n~~" ["n~"])
1378 ("?//" ["?/"])
1379 ("!//" ["!/"])
1380 )
1381
1382 (quail-define-package
1383 "swedish-alt-postfix" "Latin-1" "SV<" t
1384 "Swedish (Svenska) input method (rule: AA -> Å, AE -> Ä, OE -> Ö, E' -> É)
1385
1386 Doubling the postfix separates the letter and postfix: e.g. aee -> ae
1387 " nil t nil nil nil nil nil nil nil nil t)
1388
1389 (quail-define-rules
1390 ("AA" ?Å)
1391 ("aa" ?å)
1392 ("AE" ?Ä)
1393 ("ae" ?ä)
1394 ("OE" ?Ö)
1395 ("oe" ?ö)
1396 ("E'" ?É)
1397 ("e'" ?é)
1398
1399 ("AAA" ["AA"])
1400 ("aaa" ["aa"])
1401 ("AEE" ["AE"])
1402 ("aee" ["ae"])
1403 ("OEE" ["OE"])
1404 ("oee" ["oe"])
1405 ("E''" ["E'"])
1406 ("e''" ["e'"])
1407 )
1408
1409 (quail-define-package
1410 "turkish-alt-postfix" "Turkish" "TR«" t
1411 "Turkish (Türkçe) input method with postfix modifiers.
1412
1413 turkish-latin-3-alt-postfix is an obsolete alias for turkish-alt-postfix.
1414
1415 Note for I, ı, İ, i.
1416
1417 A^ -> Â
1418 C` -> Ç
1419 G^ -> Ğ
1420 I -> I
1421 i -> ı
1422 I/ -> İ
1423 i/ -> i
1424 O\" -> Ö
1425 S` -> Ş
1426 U\" -> Ü
1427 U^ -> Û
1428
1429 Doubling the postfix separates the letter and postfix: e.g. a^^ -> a^
1430 " nil t nil nil nil nil nil nil nil nil t)
1431
1432 (quail-define-rules
1433 ("A^" ?Â)
1434 ("a^" ?â)
1435 ("C`" ?Ç)
1436 ("c`" ?ç)
1437 ("G^" ?Ğ)
1438 ("g^" ?ğ)
1439 ("I/" ?İ)
1440 ("i" ?ı)
1441 ("i/" ?i)
1442 ("O\"" ?Ö)
1443 ("o\"" ?ö)
1444 ("S`" ?Ş)
1445 ("s`" ?ş)
1446 ("U\"" ?Ü)
1447 ("u\"" ?ü)
1448 ("U^" ?Û)
1449 ("u^" ?û)
1450
1451 ("A^^" ["A^"])
1452 ("a^^" ["a^"])
1453 ("C``" ["C`"])
1454 ("c``" ["c`"])
1455 ("G^^" ["G^"])
1456 ("g^^" ["g^"])
1457 ("I//" ["I/"])
1458 ("i" ["i"])
1459 ("i//" ["i/"])
1460 ("O\"\"" ["O\""])
1461 ("o\"\"" ["o\""])
1462 ("S``" ["S`"])
1463 ("s``" ["s`"])
1464 ("U\"\"" ["U\""])
1465 ("u\"\"" ["u\""])
1466 ("U^^" ["U^"])
1467 ("u^^" ["u^"])
1468 )
1469
1470 ;; Backwards compatibility.
1471 (push (cons "turkish-latin-3-alt-postfix"
1472 (cdr (assoc "turkish-alt-postfix" quail-package-alist)))
1473 quail-package-alist)
1474
1475 ;; Dutch Quail input method derived from the one in Yudit by Roman
1476 ;; Czyborra.
1477 (quail-define-package
1478 "dutch" "Dutch" "NL" t
1479 "Dutch character mixfix input method.
1480 Caters for French and Turkish as well as Dutch.
1481
1482 | | examples
1483 ------------+---------+----------
1484 others | | fl. -> ƒ eur. -> € ij -> ij IJ -> IJ
1485 ------------+---------+----------
1486 | postfix |
1487 ------------+---------+----------
1488 acute | ' | a' -> á
1489 grave | ` | a` -> à
1490 circumflex | ^ | a^ -> â
1491 Turkish | various | i/ -> ı s, -> ş g^ -> ğ I/ -> İ
1492 | | S, -> Ş G^ -> Ğ
1493 ------------+---------+----------
1494 | prefix |
1495 ------------+---------+----------
1496 diaeresis | \" | \"a -> ä
1497
1498 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
1499 " nil t nil nil nil nil nil nil nil nil t)
1500
1501 (quail-define-rules
1502 ("fl." ?ƒ) ;; LATIN SMALL LETTER F WITH HOOK (florin currency symbol)
1503 ("eur." ?€) ;; EURO SIGN
1504 ;; “The 25th letter of the Dutch alphabet.”
1505 ("ij" ?ij) ;; LATIN SMALL LIGATURE IJ
1506 ("IJ" ?IJ) ;; LATIN CAPITAL LIGATURE IJ
1507 ;; “Trema on the second letter of vowel pair.” Yudit uses `:', not `"'.
1508 ("\"a" ?ä) ;; LATIN SMALL LETTER A WITH DIAERESIS
1509 ("\"e" ?ë) ;; LATIN SMALL LETTER E WITH DIAERESIS
1510 ("\"i" ?ï) ;; LATIN SMALL LETTER I WITH DIAERESIS
1511 ("\"o" ?ö) ;; LATIN SMALL LETTER O WITH DIAERESIS
1512 ("\"u" ?ü) ;; LATIN SMALL LETTER U WITH DIAERESIS
1513 ("\"A" ?Ä) ;; LATIN CAPITAL LETTER A WITH DIAERESIS
1514 ("\"E" ?Ë) ;; LATIN CAPITAL LETTER E WITH DIAERESIS
1515 ("\"I" ?Ï) ;; LATIN CAPITAL LETTER I WITH DIAERESIS
1516 ("\"O" ?Ö) ;; LATIN CAPITAL LETTER O WITH DIAERESIS
1517 ("\"U" ?Ü) ;; LATIN CAPITAL LETTER U WITH DIAERESIS
1518 ;; “Acute, marking emphasis on long vowels”:
1519 ("a'" ?á) ;; LATIN SMALL LETTER A WITH ACUTE
1520 ("e'" ?é) ;; LATIN SMALL LETTER E WITH ACUTE
1521 ("i'" ?í) ;; LATIN SMALL LETTER I WITH ACUTE
1522 ("o'" ?ó) ;; LATIN SMALL LETTER O WITH ACUTE
1523 ("u'" ?ú) ;; LATIN SMALL LETTER U WITH ACUTE
1524 ("A'" ?Á) ;; LATIN CAPITAL LETTER A WITH ACUTE
1525 ("E'" ?É) ;; LATIN CAPITAL LETTER E WITH ACUTE
1526 ("I'" ?Í) ;; LATIN CAPITAL LETTER I WITH ACUTE
1527 ("O'" ?Ó) ;; LATIN CAPITAL LETTER O WITH ACUTE
1528 ("U'" ?Ú) ;; LATIN CAPITAL LETTER U WITH ACUTE
1529 ;; “Grave, marking emphasis on short vowels”:
1530 ("a`" ?à) ;; LATIN SMALL LETTER A WITH GRAVE
1531 ("e`" ?è) ;; LATIN SMALL LETTER E WITH GRAVE
1532 ("i`" ?ì) ;; LATIN SMALL LETTER I WITH GRAVE
1533 ("o`" ?ò) ;; LATIN SMALL LETTER O WITH GRAVE
1534 ("u`" ?ù) ;; LATIN SMALL LETTER U WITH GRAVE
1535 ("A`" ?À) ;; LATIN CAPITAL LETTER A WITH GRAVE
1536 ("E`" ?È) ;; LATIN CAPITAL LETTER E WITH GRAVE
1537 ("I`" ?Ì) ;; LATIN CAPITAL LETTER I WITH GRAVE
1538 ("O`" ?Ò) ;; LATIN CAPITAL LETTER O WITH GRAVE
1539 ("U`" ?Ù) ;; LATIN CAPITAL LETTER U WITH GRAVE
1540 ;; “Cater for the use of many French words and use of the circumflex
1541 ;; in Frisian.” Yudit used `;' for cedilla.
1542 ("c," ?ç) ;; LATIN SMALL LETTER C WITH CEDILLA
1543 ("C," ?Ç) ;; LATIN CAPITAL LETTER C WITH CEDILLA
1544 ("a^" ?â) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX
1545 ("e^" ?ê) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX
1546 ("i^" ?î) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX
1547 ("o^" ?ô) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX
1548 ("u^" ?û) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX
1549 ("A^" ?Â) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX
1550 ("E^" ?Ê) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX
1551 ("I^" ?Î) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX
1552 ("O^" ?Ô) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX
1553 ("U^" ?Û) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX
1554 ;; “Follow the example of the Dutch POSIX locale, using ISO-8859-9 to
1555 ;; cater to the many Turks in Dutch society.” Perhaps German methods
1556 ;; should do so too. Follow turkish-alt-postfix here.
1557 ("i/" ?ı) ;; LATIN SMALL LETTER I WITH NO DOT
1558 ("s," ?ş) ;; LATIN SMALL LETTER S WITH CEDILLA
1559 ("g^" ?ğ) ;; LATIN SMALL LETTER G WITH BREVE
1560 ("I/" ?İ) ;; LATIN CAPITAL LETTER I WITH DOT ABOVE
1561 ("S," ?Ş) ;; LATIN CAPITAL LETTER S WITH CEDILLA
1562 ("G^" ?Ğ) ;; LATIN CAPITAL LETTER G WITH BREVE
1563 )
1564
1565 ;; Originally from Yudit, discussed with Albertas Agejevas
1566 ;; <alga@uosis.mif.vu.lt>
1567 (quail-define-package
1568 "lithuanian-numeric" "Lithuanian" "LtN" t
1569 "Lithuanian numeric input method.
1570 " nil t t t t nil nil nil nil nil t)
1571
1572 (quail-define-rules
1573 ("1" ?ą)
1574 ("2" ?č)
1575 ("3" ?ę)
1576 ("4" ?ė)
1577 ("5" ?į)
1578 ("6" ?š)
1579 ("7" ?ų)
1580 ("8" ?ū)
1581 ("9" ?„)
1582 ("0" ?“)
1583 ("=" ?ž)
1584 ("!" ?Ą)
1585 ("@" ?Č)
1586 ("#" ?Ę)
1587 ("$" ?Ė)
1588 ("%" ?Į)
1589 ("^" ?Š)
1590 ("&" ?Ų)
1591 ("*" ?Ū)
1592 ("+" ?Ž))
1593
1594 ;; From XFree 4.1 /usr/X11R6/lib/X11/xkb/symbols/lt, suggested by
1595 ;; Albertas Agejevas <alga@uosis.mif.vu.lt>
1596 (quail-define-package
1597 "lithuanian-keyboard" "Lithuanian" "Lt" t
1598 "Lithuanian standard keyboard input method.
1599 " nil t t t t nil nil nil nil nil t)
1600
1601 (quail-define-rules
1602 ("1" ?ą)
1603 ("!" ?Ą)
1604 ("2" ?č)
1605 ("@" ?Č)
1606 ("#" ?Ę)
1607 ("4" ?ė)
1608 ("$" ?Ė)
1609 ("5" ?į)
1610 ("%" ?Į)
1611 ("6" ?š)
1612 ("^" ?Š)
1613 ("7" ?ų)
1614 ("&" ?Ų)
1615 ("9" ?„)
1616 ("0" ?“)
1617 ("=" ?ž)
1618 ("+" ?Ž))
1619
1620 ;; From XFree 4.1 /usr/X11R6/lib/X11/xkb/symbols/lv
1621 (quail-define-package
1622 "latvian-keyboard" "Latvian" "Lv" t
1623 "Latvian standard keyboard input method.
1624 " nil t t t t nil nil nil nil nil t)
1625
1626 (quail-define-rules
1627 ("4" ?€)
1628 ("$" ?¢)
1629 ("e" ?ē)
1630 ("E" ?Ē)
1631 ("r" ?ŗ)
1632 ("R" ?Ŗ)
1633 ("u" ?ū)
1634 ("U" ?Ū)
1635 ("i" ?ī)
1636 ("I" ?Ī)
1637 ("o" ?ō)
1638 ("O" ?Ō)
1639 ("a" ?ā)
1640 ("A" ?Ā)
1641 ("s" ?š)
1642 ("S" ?Š)
1643 ("g" ?ģ)
1644 ("G" ?Ģ)
1645 ("k" ?ķ)
1646 ("K" ?Ķ)
1647 ("l" ?ļ)
1648 ("L" ?Ļ)
1649 ("\'" ?“)
1650 ("\"" ?„)
1651 ("z" ?ž)
1652 ("Z" ?Ž)
1653 ("c" ?č)
1654 ("C" ?Č)
1655 ("n" ?ņ)
1656 ("N" ?Ņ))
1657
1658 (quail-define-package
1659 "latin-alt-postfix" "Latin" "L<" t
1660 "Latin character input method with postfix modifiers.
1661 This is the union of various input methods originally made for input
1662 of characters from a single Latin-N charset.
1663
1664 | postfix | examples
1665 ------------+---------+----------
1666 acute | ' | a' -> á
1667 grave | ` | a` -> à
1668 circumflex | ^ | a^ -> â
1669 diaeresis | \" | a\" -> ä
1670 tilde | ~ | a~ -> ã
1671 cedilla | /` | c/ -> ç c` -> ç
1672 ogonek | ` | a` -> ą
1673 breve | ~ | a~ -> ă
1674 caron | ~ | c~ -> č
1675 dbl. acute | : | o: -> ő
1676 ring | ` | u` -> ů
1677 dot | ` | z` -> ż
1678 stroke | / | d/ -> đ
1679 nordic | / | d/ -> ð t/ -> þ a/ -> å e/ -> æ o/ -> ø
1680 others | /<> | s/ -> ß ?/ -> ¿ !/ -> ¡
1681 | various | << -> « >> -> » o_ -> º a_ -> ª
1682
1683 It would be natural to use comma for cedillas, but that would be
1684 inconvenient in practice because commas are needed very often after a
1685 letter.
1686
1687 Doubling the postfix separates the letter and postfix: e.g. a'' -> a'
1688 " nil t nil nil nil nil nil nil nil nil t)
1689
1690 ;; Fixme: ¦ § ¨ © ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ ¼ ½ ¾ × ÷
1691 (quail-define-rules
1692 (" _" ? )
1693 ("!/" ?¡)
1694 ("//" ?°)
1695 ("<<" ?«)
1696 (">>" ?»)
1697 ("?/" ?¿)
1698 ("$/" ?£)
1699 ("$/" ?¤)
1700 ("A'" ?Á)
1701 ("A-" ?Ā)
1702 ("A/" ?Å)
1703 ("A\"" ?Ä)
1704 ("A^" ?Â)
1705 ("A`" ?À)
1706 ("A`" ?Ą)
1707 ("A~" ?Ã)
1708 ("A~" ?Ă)
1709 ("C'" ?Ć)
1710 ("C/" ?Ç)
1711 ("C/" ?Ċ)
1712 ("C^" ?Ĉ)
1713 ("C`" ?Ç)
1714 ("C~" ?Č)
1715 ("D/" ?Ð)
1716 ("D/" ?Đ)
1717 ("D~" ?Ď)
1718 ("E'" ?É)
1719 ("E-" ?Ē)
1720 ("E/" ?Æ)
1721 ("E\"" ?Ë)
1722 ("E^" ?Ê)
1723 ("E`" ?È)
1724 ("E`" ?Ę)
1725 ("E~" ?Ė)
1726 ("E~" ?Ě)
1727 ("G/" ?Ġ)
1728 ("G^" ?Ĝ)
1729 ("G`" ?Ģ)
1730 ("G~" ?Ğ)
1731 ("H/" ?Ħ)
1732 ("H^" ?Ĥ)
1733 ("I'" ?Í)
1734 ("I-" ?Ī)
1735 ("I/" ?İ)
1736 ("I\"" ?Ï)
1737 ("I^" ?Î)
1738 ("I`" ?Ì)
1739 ("I`" ?Į)
1740 ("I~" ?Ĩ)
1741 ("J^" ?Ĵ)
1742 ("K`" ?Ķ)
1743 ("L'" ?Ĺ)
1744 ("L/" ?Ł)
1745 ("L`" ?Ļ)
1746 ("L~" ?Ľ)
1747 ("N'" ?Ń)
1748 ("N/" ?Ŋ)
1749 ("N`" ?Ņ)
1750 ("N~" ?Ñ)
1751 ("N~" ?Ň)
1752 ("O'" ?Ó)
1753 ("O-" ?Ō)
1754 ("O/" ?Ø)
1755 ("O:" ?Ő)
1756 ("O\"" ?Ö)
1757 ("O^" ?Ô)
1758 ("O`" ?Ò)
1759 ("O~" ?Õ)
1760 ("R'" ?Ŕ)
1761 ("R`" ?Ŗ)
1762 ("R~" ?Ř)
1763 ("S'" ?Ś)
1764 ("S^" ?Ŝ)
1765 ("S`" ?Ş)
1766 ("S~" ?Š)
1767 ("T/" ?Þ)
1768 ("T/" ?Ŧ)
1769 ("T`" ?Ţ)
1770 ("T~" ?Ť)
1771 ("U'" ?Ú)
1772 ("U-" ?Ū)
1773 ("U:" ?Ű)
1774 ("U\"" ?Ü)
1775 ("U^" ?Û)
1776 ("U`" ?Ù)
1777 ("U`" ?Ů)
1778 ("U`" ?Ų)
1779 ("U~" ?Ũ)
1780 ("U~" ?Ŭ)
1781 ("Y'" ?Ý)
1782 ("Y\"" ?Ÿ)
1783 ("Y=" ?¥)
1784 ("Z'" ?Ź)
1785 ("Z/" ?Ż)
1786 ("Z`" ?Ż)
1787 ("Z~" ?Ž)
1788 ("a'" ?á)
1789 ("a-" ?ā)
1790 ("a/" ?å)
1791 ("a\"" ?ä)
1792 ("a^" ?â)
1793 ("a_" ?ª)
1794 ("a`" ?à)
1795 ("a`" ?ą)
1796 ("a~" ?ã)
1797 ("a~" ?ă)
1798 ("c'" ?ć)
1799 ("c/" ?ç)
1800 ("c/" ?ċ)
1801 ("c/" ?¢)
1802 ("c^" ?ĉ)
1803 ("c`" ?ç)
1804 ("c~" ?č)
1805 ("d/" ?ð)
1806 ("d/" ?đ)
1807 ("d~" ?ď)
1808 ("e'" ?é)
1809 ("e-" ?ē)
1810 ("e/" ?æ)
1811 ("e\"" ?ë)
1812 ("e^" ?ê)
1813 ("e`" ?è)
1814 ("e`" ?ę)
1815 ("e~" ?ė)
1816 ("e~" ?ě)
1817 ("e=" ?€)
1818 ("g/" ?ġ)
1819 ("g^" ?ĝ)
1820 ("g`" ?ģ)
1821 ("g~" ?ğ)
1822 ("h/" ?ħ)
1823 ("h^" ?ĥ)
1824 ("i'" ?í)
1825 ("i-" ?ī)
1826 ("i/" ?ı)
1827 ("i\"" ?ï)
1828 ("i^" ?î)
1829 ("i`" ?ì)
1830 ("i`" ?į)
1831 ("i~" ?ĩ)
1832 ("j^" ?ĵ)
1833 ("k/" ?ĸ)
1834 ("k`" ?ķ)
1835 ("l'" ?ĺ)
1836 ("l/" ?ł)
1837 ("l`" ?ļ)
1838 ("l~" ?ľ)
1839 ("n'" ?ń)
1840 ("n/" ?ŋ)
1841 ("n`" ?ņ)
1842 ("n~" ?ñ)
1843 ("n~" ?ň)
1844 ("o'" ?ó)
1845 ("o-" ?ō)
1846 ("o/" ?ø)
1847 ("o:" ?ő)
1848 ("o\"" ?ö)
1849 ("o^" ?ô)
1850 ("o_" ?º)
1851 ("o`" ?ò)
1852 ("o~" ?õ)
1853 ("r'" ?ŕ)
1854 ("r`" ?ŗ)
1855 ("r~" ?ř)
1856 ("s'" ?ś)
1857 ("s/" ?ß)
1858 ("s^" ?ŝ)
1859 ("s`" ?ş)
1860 ("s~" ?š)
1861 ("t/" ?þ)
1862 ("t/" ?ŧ)
1863 ("t`" ?ţ)
1864 ("t~" ?ť)
1865 ("u'" ?ú)
1866 ("u-" ?ū)
1867 ("u:" ?ű)
1868 ("u\"" ?ü)
1869 ("u^" ?û)
1870 ("u`" ?ù)
1871 ("u`" ?ů)
1872 ("u`" ?ų)
1873 ("u~" ?ũ)
1874 ("u~" ?ŭ)
1875 ("y'" ?ý)
1876 ("y\"" ?ÿ)
1877 ("z'" ?ź)
1878 ("z/" ?ż)
1879 ("z`" ?ż)
1880 ("z~" ?ž)
1881
1882 (" __" [" _"])
1883 ("!//" ["!/"])
1884 ("<<<" ["<<"])
1885 (">>>" [">>"])
1886 ("?//" ["?/"])
1887 ("///" ["//"])
1888 ("$//" ["$/"])
1889 ("A''" ["A'"])
1890 ("A--" ["A-"])
1891 ("A//" ["A/"])
1892 ("A\"\"" ["A\""])
1893 ("A^^" ["A^"])
1894 ("A``" ["A`"])
1895 ("A~~" ["A~"])
1896 ("C''" ["C'"])
1897 ("C//" ["C/"])
1898 ("C^^" ["C^"])
1899 ("C``" ["C`"])
1900 ("C~~" ["C~"])
1901 ("D//" ["D/"])
1902 ("D~~" ["D~"])
1903 ("E''" ["E'"])
1904 ("E--" ["E-"])
1905 ("E//" ["E/"])
1906 ("E\"\"" ["E\""])
1907 ("E^^" ["E^"])
1908 ("E``" ["E`"])
1909 ("E~~" ["E~"])
1910 ("G//" ["G/"])
1911 ("G^^" ["G^"])
1912 ("G``" ["G`"])
1913 ("G~~" ["G~"])
1914 ("H//" ["H/"])
1915 ("H^^" ["H^"])
1916 ("I''" ["I'"])
1917 ("I--" ["I-"])
1918 ("I//" ["I/"])
1919 ("I\"\"" ["I\""])
1920 ("I^^" ["I^"])
1921 ("I``" ["I`"])
1922 ("I~~" ["I~"])
1923 ("J^^" ["J^"])
1924 ("K``" ["K`"])
1925 ("L''" ["L'"])
1926 ("L//" ["L/"])
1927 ("L``" ["L`"])
1928 ("L~~" ["L~"])
1929 ("N''" ["N'"])
1930 ("N//" ["N/"])
1931 ("N``" ["N`"])
1932 ("N~~" ["N~"])
1933 ("O''" ["O'"])
1934 ("O--" ["O-"])
1935 ("O//" ["O/"])
1936 ("O::" ["O:"])
1937 ("O\"\"" ["O\""])
1938 ("O^^" ["O^"])
1939 ("O``" ["O`"])
1940 ("O~~" ["O~"])
1941 ("R''" ["R'"])
1942 ("R``" ["R`"])
1943 ("R~~" ["R~"])
1944 ("S''" ["S'"])
1945 ("S^^" ["S^"])
1946 ("S``" ["S`"])
1947 ("S~~" ["S~"])
1948 ("T//" ["T/"])
1949 ("T``" ["T`"])
1950 ("T~~" ["T~"])
1951 ("U''" ["U'"])
1952 ("U--" ["U-"])
1953 ("U::" ["U:"])
1954 ("U\"\"" ["U\""])
1955 ("U^^" ["U^"])
1956 ("U``" ["U`"])
1957 ("U~~" ["U~"])
1958 ("Y''" ["Y'"])
1959 ("Z''" ["Z'"])
1960 ("Z//" ["Z/"])
1961 ("Z``" ["Z`"])
1962 ("Z~~" ["Z~"])
1963 ("a''" ["a'"])
1964 ("a--" ["a-"])
1965 ("a//" ["a/"])
1966 ("a\"\"" ["a\""])
1967 ("a^^" ["a^"])
1968 ("a__" ["a_"])
1969 ("a``" ["a`"])
1970 ("a~~" ["a~"])
1971 ("c''" ["c'"])
1972 ("c//" ["c/"])
1973 ("c^^" ["c^"])
1974 ("c``" ["c`"])
1975 ("c~~" ["c~"])
1976 ("d//" ["d/"])
1977 ("d~~" ["d~"])
1978 ("e''" ["e'"])
1979 ("e--" ["e-"])
1980 ("e//" ["e/"])
1981 ("e\"\"" ["e\""])
1982 ("e^^" ["e^"])
1983 ("e``" ["e`"])
1984 ("e~~" ["e~"])
1985 ("e==" ["e="])
1986 ("g//" ["g/"])
1987 ("g^^" ["g^"])
1988 ("g``" ["g`"])
1989 ("g~~" ["g~"])
1990 ("h//" ["h/"])
1991 ("h^^" ["h^"])
1992 ("i''" ["i'"])
1993 ("i--" ["i-"])
1994 ("i//" ["i/"])
1995 ("i\"\"" ["i\""])
1996 ("i^^" ["i^"])
1997 ("i``" ["i`"])
1998 ("i~~" ["i~"])
1999 ("j^^" ["j^"])
2000 ("k//" ["k/"])
2001 ("k``" ["k`"])
2002 ("l''" ["l'"])
2003 ("l//" ["l/"])
2004 ("l``" ["l`"])
2005 ("l~~" ["l~"])
2006 ("n''" ["n'"])
2007 ("n//" ["n/"])
2008 ("n``" ["n`"])
2009 ("n~~" ["n~"])
2010 ("o''" ["o'"])
2011 ("o--" ["o-"])
2012 ("o//" ["o/"])
2013 ("o::" ["o:"])
2014 ("o\"\"" ["o\""])
2015 ("o^^" ["o^"])
2016 ("o__" ["o_"])
2017 ("o``" ["o`"])
2018 ("o~~" ["o~"])
2019 ("r''" ["r'"])
2020 ("r``" ["r`"])
2021 ("r~~" ["r~"])
2022 ("s''" ["s'"])
2023 ("s//" ["s/"])
2024 ("s^^" ["s^"])
2025 ("s``" ["s`"])
2026 ("s~~" ["s~"])
2027 ("t//" ["t/"])
2028 ("t``" ["t`"])
2029 ("t~~" ["t~"])
2030 ("u''" ["u'"])
2031 ("u--" ["u-"])
2032 ("u::" ["u:"])
2033 ("u\"\"" ["u\""])
2034 ("u^^" ["u^"])
2035 ("u``" ["u`"])
2036 ("u~~" ["u~"])
2037 ("y''" ["y'"])
2038 ("y\"\"" ["y\""])
2039 ("z''" ["z'"])
2040 ("z//" ["z/"])
2041 ("z``" ["z`"])
2042 ("z~~" ["z~"])
2043 )
2044
2045 ;;; arch-tag: 722466a6-363d-431c-9161-879e16e2da5d
2046 ;;; latin-alt.el ends here