40710
|
1 ;;; ipa.el --- Quail package for inputting IPA characters -*-coding: iso-2022-7bit;-*-
|
18673
|
2
|
75253
|
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
79727
|
4 ;; 2006, 2007, 2008
|
67657
|
5 ;; National Institute of Advanced Industrial Science and Technology (AIST)
|
|
6 ;; Registration Number H14PRO021
|
18673
|
7
|
|
8 ;; Keywords: multilingual, input method, IPA
|
|
9
|
|
10 ;; This file is part of GNU Emacs.
|
|
11
|
94710
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
|
18673
|
13 ;; it under the terms of the GNU General Public License as published by
|
94710
|
14 ;; the Free Software Foundation, either version 3 of the License, or
|
|
15 ;; (at your option) any later version.
|
18673
|
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
|
94710
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
18673
|
24
|
38453
|
25 ;;; Commentary:
|
|
26
|
18673
|
27 ;;; Code:
|
|
28
|
|
29 (require 'quail)
|
|
30
|
|
31 (quail-define-package
|
|
32 "ipa" "IPA" "IPA" t
|
|
33 "International Phonetic Alphabet for English, French, German and Italian
|
|
34
|
|
35 Upside-down characters are obtained by a preceding slash (/)."
|
19722
|
36 nil t nil nil nil nil nil nil nil nil t)
|
18673
|
37
|
|
38 (quail-define-rules
|
|
39 ("i" ?,0 (B)
|
|
40 ("I" ?,0!(B)
|
|
41 ("e" ?,0"(B)
|
|
42 ("/3" ?,0#(B)
|
|
43 ("E" ?,0#(B)
|
|
44 ("ae" ?,0$(B)
|
|
45 ("a" ?,0%(B)
|
|
46 ("i-" ?,0&(B)
|
|
47 ("/e" ?,0'(B)
|
|
48 ("/a" ?,0((B)
|
|
49 ("/m" ?,0)(B)
|
|
50 ("&" ?,0*(B)
|
|
51 ("/v" ?,0+(B)
|
|
52 ("A" ?,0,(B)
|
|
53 ("o|" ?,0,(B)
|
|
54 ("y" ?,0-(B)
|
|
55 ("Y" ?,0.(B)
|
|
56 ("o/" ?,0/(B)
|
|
57 ("oe" ?,00(B)
|
|
58 ("OE" ?,01(B)
|
|
59 ("u-" ?,02(B)
|
|
60 ("o-" ?,03(B)
|
|
61 ("u" ?,04(B)
|
|
62 ("U" ?,05(B)
|
|
63 ("o" ?,06(B)
|
|
64 ("/c" ?,07(B)
|
|
65 ("/A" ?,08(B)
|
|
66 ("|o" ?,08(B)
|
|
67 ("e-" ?,0:(B)
|
|
68 ("e|" ?,0:(B)
|
|
69 ("/3~" ?,0;(B)
|
|
70 ("E~" ?,0;(B)
|
|
71 ("A~" ?,0<(B)
|
|
72 ("oe~" ?,0=(B)
|
|
73 ("/c~" ?,0>(B)
|
|
74 ("p" ?,0@(B)
|
|
75 ("b" ?,0A(B)
|
|
76 ("t" ?,0B(B)
|
|
77 ("d" ?,0C(B)
|
|
78 ("k" ?,0D(B)
|
|
79 ("g" ?,0E(B)
|
|
80 ("f" ?,0F(B)
|
|
81 ("v" ?,0G(B)
|
|
82 ("th" ?,0H(B)
|
|
83 ("dh" ?,0I(B)
|
|
84 ("s" ?,0J(B)
|
|
85 ("z" ?,0K(B)
|
|
86 ("sh" ?,0L(B)
|
|
87 ("zh" ?,0M(B)
|
|
88 ("3" ?,0M(B)
|
|
89 ("c," ?,0N(B)
|
|
90 ("x" ?,0O(B)
|
|
91 ("/R" ?,0P(B)
|
|
92 ("h" ?,0Q(B)
|
|
93 ("m" ?,0R(B)
|
|
94 ("n" ?,0S(B)
|
|
95 ("gn" ?,0T(B)
|
|
96 ("ng" ?,0U(B)
|
|
97 ("r" ?,0V(B)
|
|
98 ("R" ?,0W(B)
|
|
99 ("/r" ?,0X(B)
|
|
100 ("j" ?,0Y(B)
|
|
101 ("l" ?,0Z(B)
|
|
102 ("/y" ?,0[(B)
|
|
103 ("L" ?,0\(B)
|
|
104 ("/h" ?,0](B)
|
|
105 ("w" ?,0^(B)
|
|
106 ("M" ?,0_(B)
|
|
107 ("'" ?,0p(B)
|
|
108 ("`" ?,0q(B)
|
|
109 (":" ?,0r(B))
|
38453
|
110
|
94710
|
111 ;; arch-tag: cf2614cc-ecce-4ef5-ba51-37faeed41691
|
38453
|
112 ;;; ipa.el ends here
|