Mercurial > emacs
annotate leim/quail/ipa.el @ 43794:8acd1399d389
(shell-command-on-region): Call push-mark with
non-nil second arg, to suppress the "Mark set" message.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 09 Mar 2002 09:05:08 +0000 |
parents | 890f548046c1 |
children | 695cf19ef79e d7ddb3e565de |
rev | line source |
---|---|
40710 | 1 ;;; ipa.el --- Quail package for inputting IPA characters -*-coding: iso-2022-7bit;-*- |
18673 | 2 |
3 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. | |
4 ;; Licensed to the Free Software Foundation. | |
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 the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
19722
diff
changeset
|
25 ;;; Commentary: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
19722
diff
changeset
|
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
dd39cae4cf0f
For each package, pass t for the SIMPLE
Kenichi Handa <handa@m17n.org>
parents:
18673
diff
changeset
|
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
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
19722
diff
changeset
|
110 |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
19722
diff
changeset
|
111 ;;; ipa.el ends here |