Mercurial > emacs
annotate leim/quail/georgian.el @ 66955:4571a040cf5b
(file-name-shadow-properties, file-name-shadow-tty-properties)
(file-name-shadow-mode): Remove autoloads, because the file is now preloaded.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Thu, 17 Nov 2005 05:34:45 +0000 |
parents | 23a17af379b1 |
children | f3fbe553f034 f9a65d7ebd29 |
rev | line source |
---|---|
40712 | 1 ;;; georgian.el --- Quail package for inputting Georgian characters -*-coding: utf-8;-*- |
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 | |
64083 | 22 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
40712 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; Georgian input following the Yudit map from Mark Leisher | |
28 ;; <mleisher@crl.nmsu.edu>. | |
29 | |
30 ;;; Code: | |
31 | |
32 (require 'quail) | |
33 | |
34 (quail-define-package | |
35 "georgian" "Georgian" "გ" t | |
36 "A common Georgian transliteration (using Unicode)" | |
56678
6165248b32a6
("georgian"): Call quail-define-package with the show-layout arg t.
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
37 nil t nil nil t nil nil nil nil nil t) |
40712 | 38 |
39 (quail-define-rules | |
40 ("a" ?ა) | |
41 ("b" ?ბ) | |
42 ("g" ?გ) | |
43 ("d" ?დ) | |
44 ("e" ?ე) | |
45 ("v" ?ვ) | |
46 ("z" ?ზ) | |
47 ("t" ?თ) | |
48 ("i" ?ი) | |
49 (".k" ?კ) | |
50 ("l" ?ლ) | |
51 ("m" ?მ) | |
52 ("n" ?ნ) | |
53 ("o" ?ო) | |
54 (".p" ?პ) | |
55 ("\+z" ?ჟ) | |
56 ("r" ?რ) | |
57 ("s" ?ს) | |
58 (".t" ?ტ) | |
59 ("u" ?უ) | |
60 ("p" ?ფ) | |
61 ("k" ?ქ) | |
62 (".g" ?ღ) | |
63 ("q" ?ყ) | |
64 ("\+s" ?შ) | |
65 ("\+c" ?ჩ) | |
66 ("c" ?ც) | |
67 ("j" ?ძ) | |
68 (".c" ?წ) | |
69 (".\+c" ?ჭ) | |
70 ("x" ?ხ) | |
71 ("\+j" ?ჯ) | |
72 ("h" ?ჰ) | |
73 ("q1" ?ჴ) | |
74 ("e0" ?ჱ) | |
75 ("o1" ?ჵ) | |
76 ("i1" ?ჲ) | |
77 ("w" ?ჳ) | |
78 ("f" ?ჶ) | |
79 ;; Presumably, these are GEORGIAN LETTER YN, GEORGIAN LETTER ELIFI, | |
80 ;; accepted for U+10F7, U+10F8 -- fx | |
81 ("y" ?) ;; Letter not in Unicode (private use code). | |
82 ("e1" ?) ;; Letter not in Unicode (private use code). | |
83 ) | |
84 | |
52401 | 85 ;;; arch-tag: 7b26f205-7091-435e-a2cf-8778f899dc8a |
40712 | 86 ;;; georgian.el ends here |