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