Mercurial > hg > xemacs-beta
comparison lisp/leim/quail/ipa.el @ 155:43dd3413c7c7 r20-3b4
Import from CVS: tag r20-3b4
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:39:39 +0200 |
parents | |
children | acd284d43ca1 |
comparison
equal
deleted
inserted
replaced
154:94141801dd7e | 155:43dd3413c7c7 |
---|---|
1 ;;; quail/ipa.el -- Quail package for inputting IPA characters | |
2 | |
3 ;; Copyright (C) 1995 Free Software Foundation, Inc. | |
4 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
5 | |
6 ;; Keywords: multilingual, input method, IPA | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
24 ;;; Code: | |
25 | |
26 (require 'quail) | |
27 | |
28 (quail-define-package | |
29 "quail-ipa" "IPA" "IPA" t | |
30 "International Phonetic Alphabet for English, French, German and Italian. | |
31 Upside-down characters are obtained by a preceding slash (/)." | |
32 nil t) | |
33 | |
34 (quail-define-rules | |
35 ("i" ?,0 (B) | |
36 ("I" ?,0!(B) | |
37 ("e" ?,0"(B) | |
38 ("/3" ?,0#(B) | |
39 ("E" ?,0#(B) | |
40 ("ae" ?,0$(B) | |
41 ("a" ?,0%(B) | |
42 ("i-" ?,0&(B) | |
43 ("/e" ?,0'(B) | |
44 ("/a" ?,0((B) | |
45 ("/m" ?,0)(B) | |
46 ("&" ?,0*(B) | |
47 ("/v" ?,0+(B) | |
48 ("A" ?,0,(B) | |
49 ("o|" ?,0,(B) | |
50 ("y" ?,0-(B) | |
51 ("Y" ?,0.(B) | |
52 ("o/" ?,0/(B) | |
53 ("oe" ?,00(B) | |
54 ("OE" ?,01(B) | |
55 ("u-" ?,02(B) | |
56 ("o-" ?,03(B) | |
57 ("u" ?,04(B) | |
58 ("U" ?,05(B) | |
59 ("o" ?,06(B) | |
60 ("/c" ?,07(B) | |
61 ("/A" ?,08(B) | |
62 ("|o" ?,08(B) | |
63 ("e-" ?,0:(B) | |
64 ("e|" ?,0:(B) | |
65 ("/3~" ?,0;(B) | |
66 ("E~" ?,0;(B) | |
67 ("A~" ?,0<(B) | |
68 ("oe~" ?,0=(B) | |
69 ("/c~" ?,0>(B) | |
70 ("p" ?,0@(B) | |
71 ("b" ?,0A(B) | |
72 ("t" ?,0B(B) | |
73 ("d" ?,0C(B) | |
74 ("k" ?,0D(B) | |
75 ("g" ?,0E(B) | |
76 ("f" ?,0F(B) | |
77 ("v" ?,0G(B) | |
78 ("th" ?,0H(B) | |
79 ("dh" ?,0I(B) | |
80 ("s" ?,0J(B) | |
81 ("z" ?,0K(B) | |
82 ("sh" ?,0L(B) | |
83 ("zh" ?,0M(B) | |
84 ("3" ?,0M(B) | |
85 ("c," ?,0N(B) | |
86 ("x" ?,0O(B) | |
87 ("/R" ?,0P(B) | |
88 ("h" ?,0Q(B) | |
89 ("m" ?,0R(B) | |
90 ("n" ?,0S(B) | |
91 ("gn" ?,0T(B) | |
92 ("ng" ?,0U(B) | |
93 ("r" ?,0V(B) | |
94 ("R" ?,0W(B) | |
95 ("/r" ?,0X(B) | |
96 ("j" ?,0Y(B) | |
97 ("l" ?,0Z(B) | |
98 ("/y" ?,0[(B) | |
99 ("L" ?,0\(B) | |
100 ("/h" ?,0](B) | |
101 ("w" ?,0^(B) | |
102 ("M" ?,0_(B) | |
103 ("'" ?,0p(B) | |
104 ("`" ?,0q(B) | |
105 (":" ?,0r(B)) |