Mercurial > emacs
annotate leim/quail/welsh.el @ 74288:12e8cedf59f1
*** empty log message ***
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 28 Nov 2006 03:44:39 +0000 |
parents | f3fbe553f034 |
children | f5f322eb227f 72dea2ff0142 |
rev | line source |
---|---|
40712 | 1 ;;; welsh.el --- Quail package for inputting Welsh characters -*-coding: iso-2022-7bit;-*- |
2 | |
70125
f3fbe553f034
updated copyright year(s)
Ramprasad B <ramprasad_i82@yahoo.com>
parents:
64083
diff
changeset
|
3 ;; Copyright (C) 2001, 2006 Free Software Foundation, Inc. |
40712 | 4 |
5 ;; Author: Dave Love <fx@gnu.org> | |
6 ;; Keywords: i18n | |
7 | |
42320 | 8 ;; This file is part of GNU Emacs. |
9 | |
40712 | 10 ;; This file 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 ;; This file 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 | |
64083 | 22 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
40712 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; Welsh input following the Yudit map by david@sheetmusic.org.uk. | |
28 ;; This is set up to produce utf-8. A Latin-8 version of most of it | |
29 ;; is commented-out at the end. | |
30 | |
31 ;;; Code: | |
32 | |
33 (require 'quail) | |
34 | |
35 (quail-define-package | |
36 "welsh" "Welsh" "$,1!4(B" t | |
37 "Welsh postfix input method, using Unicode" | |
38 nil t nil nil nil nil nil nil nil nil t) | |
39 | |
40 (quail-define-rules | |
41 ("A\\" ?,A@(B) | |
42 ("A/" ?,AA(B) | |
43 ("A^" ?,AB(B) | |
44 ("A+" ?,AB(B) | |
45 ("A\"" ?,AD(B) | |
46 ("a\\" ?,A`(B) | |
47 ("a/" ?,Aa(B) | |
48 ("a^" ?,Ab(B) | |
49 ("a+" ?,Ab(B) | |
50 ("a\"" ?,Ad(B) | |
51 | |
52 ("E\\" ?,AH(B) | |
53 ("E/" ?,AI(B) | |
54 ("E^" ?,AJ(B) | |
55 ("E+" ?,AJ(B) | |
56 ("E\"" ?,AK(B) | |
57 ("e\\" ?,Ah(B) | |
58 ("e/" ?,Ai(B) | |
59 ("e^" ?,Aj(B) | |
60 ("e+" ?,Aj(B) | |
61 ("e\"" ?,Ak(B) | |
62 | |
63 ("I\\" ?,AL(B) | |
64 ("I/" ?,AM(B) | |
65 ("I^" ?,AN(B) | |
66 ("I+" ?,AN(B) | |
67 ("I\"" ?,AO(B) | |
68 ("i\\" ?,Al(B) | |
69 ("i/" ?,Am(B) | |
70 ("i^" ?,An(B) | |
71 ("i+" ?,An(B) | |
72 ("i\"" ?,Ao(B) | |
73 | |
74 ("O\\" ?,AR(B) | |
75 ("O/" ?,AS(B) | |
76 ("O^" ?,AT(B) | |
77 ("O+" ?,AT(B) | |
78 ("O\"" ?,AV(B) | |
79 ("o\\" ?,Ar(B) | |
80 ("o/" ?,As(B) | |
81 ("o^" ?,At(B) | |
82 ("o+" ?,At(B) | |
83 ("o\"" ?,Av(B) | |
84 | |
85 ("U\\" ?,AY(B) | |
86 ("U/" ?,AZ(B) | |
87 ("U^" ?,A[(B) | |
88 ("U+" ?,A[(B) | |
89 ("U\"" ?,A\(B) | |
90 ("u\\" ?,Ay(B) | |
91 ("u/" ?,Az(B) | |
92 ("u^" ?,A{(B) | |
93 ("u+" ?,A{(B) | |
94 ("u\"" ?,A|(B) | |
95 | |
96 ("Y\\" ?$,1or(B) | |
97 ("Y/" ?,A](B) | |
98 ("Y^" ?$,1!6(B) | |
99 ("Y+" ?$,1!6(B) | |
100 ("Y\"" ?$,1!8(B) | |
101 ("y\\" ?$,1os(B) | |
102 ("y/" ?,A}(B) | |
103 ("y\"" ?,A(B) | |
104 ("y^" ?$,1!7(B) | |
105 ("y+" ?$,1!7(B) | |
106 | |
107 ("W\\" ?$,1n`(B) | |
108 ("W/" ?$,1nb(B) | |
109 ("W^" ?$,1!4(B) | |
110 ("W+" ?$,1!4(B) | |
111 ("W\"" ?$,1nd(B) | |
112 ("w\\" ?$,1na(B) | |
113 ("w/" ?$,1nc(B) | |
114 ("w^" ?$,1!5(B) | |
115 ("w+" ?$,1!5(B) | |
116 ("w\"" ?$,1ne(B) | |
117 | |
118 ;; "hawlfraint" (copyright). Dyma arwyddlun hawlfraint. | |
119 ("(h)" ?$,1W(B)) | |
120 | |
48310 | 121 ;; (quail-define-package |
40712 | 122 ;; "welsh" "Welsh" "$,1!4(B" t |
123 ;; "Welsh postfix input method, using Latin-8" | |
124 ;; nil t nil nil nil nil nil nil nil nil t) | |
125 | |
126 ;; (quail-define-rules | |
127 ;; ("A\\" ?,A@(B) | |
128 ;; ("A/" ?,AA(B) | |
129 ;; ("A^" ?,AB(B) | |
130 ;; ("A+" ?,AB(B) | |
131 ;; ("A\"" ?,AD(B) | |
132 ;; ("a\\" ?,A`(B) | |
133 ;; ("a/" ?,Aa(B) | |
134 ;; ("a^" ?,Ab(B) | |
135 ;; ("a+" ?,Ab(B) | |
136 ;; ("a\"" ?,Ad(B) | |
137 | |
138 ;; ("E\\" ?,AH(B) | |
139 ;; ("E/" ?,AI(B) | |
140 ;; ("E^" ?,AJ(B) | |
141 ;; ("E+" ?,AJ(B) | |
142 ;; ("E\"" ?,AK(B) | |
143 ;; ("e\\" ?,Ah(B) | |
144 ;; ("e/" ?,Ai(B) | |
145 ;; ("e^" ?,Aj(B) | |
146 ;; ("e+" ?,Aj(B) | |
147 ;; ("e\"" ?,Ak(B) | |
148 | |
149 ;; ("I\\" ?,AL(B) | |
150 ;; ("I/" ?,AM(B) | |
151 ;; ("I^" ?,AN(B) | |
152 ;; ("I+" ?,AN(B) | |
153 ;; ("I\"" ?,AO(B) | |
154 ;; ("i\\" ?,Al(B) | |
155 ;; ("i/" ?,Am(B) | |
156 ;; ("i^" ?,An(B) | |
157 ;; ("i+" ?,An(B) | |
158 ;; ("i\"" ?,Ao(B) | |
159 | |
160 ;; ("O\\" ?,AR(B) | |
161 ;; ("O/" ?,AS(B) | |
162 ;; ("O^" ?,AT(B) | |
163 ;; ("O+" ?,AT(B) | |
164 ;; ("O\"" ?,AV(B) | |
165 ;; ("o\\" ?,Ar(B) | |
166 ;; ("o/" ?,As(B) | |
167 ;; ("o^" ?,At(B) | |
168 ;; ("o+" ?,At(B) | |
169 ;; ("o\"" ?,Av(B) | |
170 | |
171 ;; ("U\\" ?,AY(B) | |
172 ;; ("U/" ?,AZ(B) | |
173 ;; ("U^" ?,A[(B) | |
174 ;; ("U+" ?,A[(B) | |
175 ;; ("U\"" ?,A\(B) | |
176 ;; ("u\\" ?,Ay(B) | |
177 ;; ("u/" ?,Az(B) | |
178 ;; ("u^" ?,A{(B) | |
179 ;; ("u+" ?,A{(B) | |
180 ;; ("u\"" ?,A|(B) | |
181 | |
182 ;; ("Y\\" ?,A,(B) | |
183 ;; ("Y/" ?,A](B) | |
184 ;; ("Y^" ?,A^(B) | |
185 ;; ("Y+" ?,A^(B) | |
186 ;; ("Y\"" ?,A/(B) | |
187 ;; ("y\\" ?,A<(B) | |
188 ;; ("y/" ?,A}(B) | |
189 ;; ("y\"" ?,A(B) | |
190 ;; ("y^" ?,A~(B) | |
191 ;; ("y+" ?,A~(B) | |
192 | |
193 ;; ("W\\" ?,A((B) | |
194 ;; ("W/" ?,A*(B) | |
195 ;; ("W^" ?,AP(B) | |
196 ;; ("W+" ?,AP(B) | |
197 ;; ("W\"" ?,A=(B) | |
198 ;; ("w\\" ?,A8(B) | |
199 ;; ("w/" ?,A:(B) | |
200 ;; ("w^" ?,Ap(B) | |
201 ;; ("w+" ?,Ap(B) | |
202 ;; ("w\"" ?,A>(B)) | |
203 | |
204 | |
52401 | 205 ;;; arch-tag: aeef0eae-0a50-4606-9120-020d59d5e208 |
40712 | 206 ;;; welsh.el ends here |