40712
|
1 ;;; welsh.el --- Quail package for inputting Welsh characters -*-coding: iso-2022-7bit;-*-
|
|
2
|
|
3 ;; Copyright (C) 2001 Free Software Foundation, Inc.
|
|
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
|
|
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;;; Commentary:
|
|
26
|
|
27 ;; Welsh input following the Yudit map by david@sheetmusic.org.uk.
|
|
28
|
|
29 ;;; Code:
|
|
30
|
|
31 (require 'quail)
|
|
32
|
|
33 (quail-define-package
|
|
34 "welsh" "Welsh" "$,1!4(B" t
|
88942
|
35 "Welsh postfix input method."
|
40712
|
36 nil t nil nil nil nil nil nil nil nil t)
|
|
37
|
|
38 (quail-define-rules
|
|
39 ("A\\" ?,A@(B)
|
|
40 ("A/" ?,AA(B)
|
|
41 ("A^" ?,AB(B)
|
|
42 ("A+" ?,AB(B)
|
|
43 ("A\"" ?,AD(B)
|
|
44 ("a\\" ?,A`(B)
|
|
45 ("a/" ?,Aa(B)
|
|
46 ("a^" ?,Ab(B)
|
|
47 ("a+" ?,Ab(B)
|
|
48 ("a\"" ?,Ad(B)
|
|
49
|
|
50 ("E\\" ?,AH(B)
|
|
51 ("E/" ?,AI(B)
|
|
52 ("E^" ?,AJ(B)
|
|
53 ("E+" ?,AJ(B)
|
|
54 ("E\"" ?,AK(B)
|
|
55 ("e\\" ?,Ah(B)
|
|
56 ("e/" ?,Ai(B)
|
|
57 ("e^" ?,Aj(B)
|
|
58 ("e+" ?,Aj(B)
|
|
59 ("e\"" ?,Ak(B)
|
|
60
|
|
61 ("I\\" ?,AL(B)
|
|
62 ("I/" ?,AM(B)
|
|
63 ("I^" ?,AN(B)
|
|
64 ("I+" ?,AN(B)
|
|
65 ("I\"" ?,AO(B)
|
|
66 ("i\\" ?,Al(B)
|
|
67 ("i/" ?,Am(B)
|
|
68 ("i^" ?,An(B)
|
|
69 ("i+" ?,An(B)
|
|
70 ("i\"" ?,Ao(B)
|
|
71
|
|
72 ("O\\" ?,AR(B)
|
|
73 ("O/" ?,AS(B)
|
|
74 ("O^" ?,AT(B)
|
|
75 ("O+" ?,AT(B)
|
|
76 ("O\"" ?,AV(B)
|
|
77 ("o\\" ?,Ar(B)
|
|
78 ("o/" ?,As(B)
|
|
79 ("o^" ?,At(B)
|
|
80 ("o+" ?,At(B)
|
|
81 ("o\"" ?,Av(B)
|
|
82
|
|
83 ("U\\" ?,AY(B)
|
|
84 ("U/" ?,AZ(B)
|
|
85 ("U^" ?,A[(B)
|
|
86 ("U+" ?,A[(B)
|
|
87 ("U\"" ?,A\(B)
|
|
88 ("u\\" ?,Ay(B)
|
|
89 ("u/" ?,Az(B)
|
|
90 ("u^" ?,A{(B)
|
|
91 ("u+" ?,A{(B)
|
|
92 ("u\"" ?,A|(B)
|
|
93
|
|
94 ("Y\\" ?$,1or(B)
|
|
95 ("Y/" ?,A](B)
|
|
96 ("Y^" ?$,1!6(B)
|
|
97 ("Y+" ?$,1!6(B)
|
|
98 ("Y\"" ?$,1!8(B)
|
|
99 ("y\\" ?$,1os(B)
|
|
100 ("y/" ?,A}(B)
|
|
101 ("y\"" ?,A(B)
|
|
102 ("y^" ?$,1!7(B)
|
|
103 ("y+" ?$,1!7(B)
|
|
104
|
|
105 ("W\\" ?$,1n`(B)
|
|
106 ("W/" ?$,1nb(B)
|
|
107 ("W^" ?$,1!4(B)
|
|
108 ("W+" ?$,1!4(B)
|
|
109 ("W\"" ?$,1nd(B)
|
|
110 ("w\\" ?$,1na(B)
|
|
111 ("w/" ?$,1nc(B)
|
|
112 ("w^" ?$,1!5(B)
|
|
113 ("w+" ?$,1!5(B)
|
|
114 ("w\"" ?$,1ne(B)
|
|
115
|
|
116 ;; "hawlfraint" (copyright). Dyma arwyddlun hawlfraint.
|
|
117 ("(h)" ?$,1W(B))
|
|
118
|
|
119 ;;; welsh.el ends here
|