Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / leim / quail / welsh.el
blob26e76481471609a027e460045db1a80fc74616be
1 ;;; welsh.el --- Quail package for inputting Welsh characters -*-coding: utf-8;-*-
3 ;; Copyright (C) 2001-2014 Free Software Foundation, Inc.
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Keywords: i18n
8 ;; This file is part of GNU Emacs.
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 3 of the License, or
13 ;; (at your option) any later version.
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Welsh input following the Yudit map by david@sheetmusic.org.uk.
27 ;;; Code:
29 (require 'quail)
31 (quail-define-package
32 "welsh" "Welsh" "Ŵ" t
33 "Welsh postfix input method"
34 nil t nil nil nil nil nil nil nil nil t)
36 (quail-define-rules
37 ("A\\")
38 ("A/")
39 ("A^")
40 ("A+")
41 ("A\"")
42 ("a\\")
43 ("a/")
44 ("a^")
45 ("a+")
46 ("a\"")
48 ("E\\")
49 ("E/")
50 ("E^")
51 ("E+")
52 ("E\"")
53 ("e\\")
54 ("e/")
55 ("e^")
56 ("e+")
57 ("e\"")
59 ("I\\")
60 ("I/")
61 ("I^")
62 ("I+")
63 ("I\"")
64 ("i\\")
65 ("i/")
66 ("i^")
67 ("i+")
68 ("i\"")
70 ("O\\")
71 ("O/")
72 ("O^")
73 ("O+")
74 ("O\"")
75 ("o\\")
76 ("o/")
77 ("o^")
78 ("o+")
79 ("o\"")
81 ("U\\")
82 ("U/")
83 ("U^")
84 ("U+")
85 ("U\"")
86 ("u\\")
87 ("u/")
88 ("u^")
89 ("u+")
90 ("u\"")
92 ("Y\\" ?Ỳ)
93 ("Y/")
94 ("Y^")
95 ("Y+")
96 ("Y\"")
97 ("y\\" ?ỳ)
98 ("y/")
99 ("y\"" ?ÿ)
100 ("y^")
101 ("y+")
103 ("W\\" ?Ẁ)
104 ("W/" ?Ẃ)
105 ("W^")
106 ("W+")
107 ("W\"" ?Ẅ)
108 ("w\\" ?ẁ)
109 ("w/" ?ẃ)
110 ("w^")
111 ("w+")
112 ("w\"" ?ẅ)
114 ;; "hawlfraint" (copyright). Dyma arwyddlun hawlfraint.
115 ("(h)" ?ⓗ))
117 ;; (quail-define-package
118 ;; "welsh" "Welsh" "Ŵ" t
119 ;; "Welsh postfix input method, using Latin-8"
120 ;; nil t nil nil nil nil nil nil nil nil t)
122 ;; (quail-define-rules
123 ;; ("A\\" ?À)
124 ;; ("A/" ?Á)
125 ;; ("A^" ?Â)
126 ;; ("A+" ?Â)
127 ;; ("A\"" ?Ä)
128 ;; ("a\\" ?à)
129 ;; ("a/" ?á)
130 ;; ("a^" ?â)
131 ;; ("a+" ?â)
132 ;; ("a\"" ?ä)
134 ;; ("E\\" ?È)
135 ;; ("E/" ?É)
136 ;; ("E^" ?Ê)
137 ;; ("E+" ?Ê)
138 ;; ("E\"" ?Ë)
139 ;; ("e\\" ?è)
140 ;; ("e/" ?é)
141 ;; ("e^" ?ê)
142 ;; ("e+" ?ê)
143 ;; ("e\"" ?ë)
145 ;; ("I\\" ?Ì)
146 ;; ("I/" ?Í)
147 ;; ("I^" ?Î)
148 ;; ("I+" ?Î)
149 ;; ("I\"" ?Ï)
150 ;; ("i\\" ?ì)
151 ;; ("i/" ?í)
152 ;; ("i^" ?î)
153 ;; ("i+" ?î)
154 ;; ("i\"" ?ï)
156 ;; ("O\\" ?Ò)
157 ;; ("O/" ?Ó)
158 ;; ("O^" ?Ô)
159 ;; ("O+" ?Ô)
160 ;; ("O\"" ?Ö)
161 ;; ("o\\" ?ò)
162 ;; ("o/" ?ó)
163 ;; ("o^" ?ô)
164 ;; ("o+" ?ô)
165 ;; ("o\"" ?ö)
167 ;; ("U\\" ?Ù)
168 ;; ("U/" ?Ú)
169 ;; ("U^" ?Û)
170 ;; ("U+" ?Û)
171 ;; ("U\"" ?Ü)
172 ;; ("u\\" ?ù)
173 ;; ("u/" ?ú)
174 ;; ("u^" ?û)
175 ;; ("u+" ?û)
176 ;; ("u\"" ?ü)
178 ;; ("Y\\" ?¬)
179 ;; ("Y/" ?Ý)
180 ;; ("Y^" ?Þ)
181 ;; ("Y+" ?Þ)
182 ;; ("Y\"" ?¯)
183 ;; ("y\\" ?¼)
184 ;; ("y/" ?ý)
185 ;; ("y\"" ?ÿ)
186 ;; ("y^" ?þ)
187 ;; ("y+" ?þ)
189 ;; ("W\\" ?¨)
190 ;; ("W/" ?ª)
191 ;; ("W^" ?Ð)
192 ;; ("W+" ?Ð)
193 ;; ("W\"" ?½)
194 ;; ("w\\" ?¸)
195 ;; ("w/" ?º)
196 ;; ("w^" ?ð)
197 ;; ("w+" ?ð)
198 ;; ("w\"" ?¾))
201 ;;; welsh.el ends here