Mercurial > emacs
annotate leim/quail/ipa.el @ 71571:61aafe312da2
Remove finished items.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Mon, 03 Jul 2006 14:35:18 +0000 |
parents | b94a4bf1aca6 |
children | 6ee41fdd69ff 7beb78bc1f8e |
rev | line source |
---|---|
40710 | 1 ;;; ipa.el --- Quail package for inputting IPA characters -*-coding: iso-2022-7bit;-*- |
18673 | 2 |
67657 | 3 ;; Copyright (C) 1997 |
4 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
5 ;; Registration Number H14PRO021 | |
18673 | 6 |
7 ;; Keywords: multilingual, input method, IPA | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64083 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
18673 | 25 |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
19722
diff
changeset
|
26 ;;; Commentary: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
19722
diff
changeset
|
27 |
18673 | 28 ;;; Code: |
29 | |
30 (require 'quail) | |
31 | |
32 (quail-define-package | |
33 "ipa" "IPA" "IPA" t | |
34 "International Phonetic Alphabet for English, French, German and Italian | |
35 | |
36 Upside-down characters are obtained by a preceding slash (/)." | |
19722
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
18673
diff
changeset
|
37 nil t nil nil nil nil nil nil nil nil t) |
18673 | 38 |
39 (quail-define-rules | |
40 ("i" ?,0 (B) | |
41 ("I" ?,0!(B) | |
42 ("e" ?,0"(B) | |
43 ("/3" ?,0#(B) | |
44 ("E" ?,0#(B) | |
45 ("ae" ?,0$(B) | |
46 ("a" ?,0%(B) | |
47 ("i-" ?,0&(B) | |
48 ("/e" ?,0'(B) | |
49 ("/a" ?,0((B) | |
50 ("/m" ?,0)(B) | |
51 ("&" ?,0*(B) | |
52 ("/v" ?,0+(B) | |
53 ("A" ?,0,(B) | |
54 ("o|" ?,0,(B) | |
55 ("y" ?,0-(B) | |
56 ("Y" ?,0.(B) | |
57 ("o/" ?,0/(B) | |
58 ("oe" ?,00(B) | |
59 ("OE" ?,01(B) | |
60 ("u-" ?,02(B) | |
61 ("o-" ?,03(B) | |
62 ("u" ?,04(B) | |
63 ("U" ?,05(B) | |
64 ("o" ?,06(B) | |
65 ("/c" ?,07(B) | |
66 ("/A" ?,08(B) | |
67 ("|o" ?,08(B) | |
68 ("e-" ?,0:(B) | |
69 ("e|" ?,0:(B) | |
70 ("/3~" ?,0;(B) | |
71 ("E~" ?,0;(B) | |
72 ("A~" ?,0<(B) | |
73 ("oe~" ?,0=(B) | |
74 ("/c~" ?,0>(B) | |
75 ("p" ?,0@(B) | |
76 ("b" ?,0A(B) | |
77 ("t" ?,0B(B) | |
78 ("d" ?,0C(B) | |
79 ("k" ?,0D(B) | |
80 ("g" ?,0E(B) | |
81 ("f" ?,0F(B) | |
82 ("v" ?,0G(B) | |
83 ("th" ?,0H(B) | |
84 ("dh" ?,0I(B) | |
85 ("s" ?,0J(B) | |
86 ("z" ?,0K(B) | |
87 ("sh" ?,0L(B) | |
88 ("zh" ?,0M(B) | |
89 ("3" ?,0M(B) | |
90 ("c," ?,0N(B) | |
91 ("x" ?,0O(B) | |
92 ("/R" ?,0P(B) | |
93 ("h" ?,0Q(B) | |
94 ("m" ?,0R(B) | |
95 ("n" ?,0S(B) | |
96 ("gn" ?,0T(B) | |
97 ("ng" ?,0U(B) | |
98 ("r" ?,0V(B) | |
99 ("R" ?,0W(B) | |
100 ("/r" ?,0X(B) | |
101 ("j" ?,0Y(B) | |
102 ("l" ?,0Z(B) | |
103 ("/y" ?,0[(B) | |
104 ("L" ?,0\(B) | |
105 ("/h" ?,0](B) | |
106 ("w" ?,0^(B) | |
107 ("M" ?,0_(B) | |
108 ("'" ?,0p(B) | |
109 ("`" ?,0q(B) | |
110 (":" ?,0r(B)) | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
19722
diff
changeset
|
111 |
52401 | 112 ;;; arch-tag: cf2614cc-ecce-4ef5-ba51-37faeed41691 |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
19722
diff
changeset
|
113 ;;; ipa.el ends here |