Mercurial > emacs
annotate leim/quail/georgian.el @ 60333:e1f267f69b78
(get_next_display_element): Fix control and escape
glyph from display vector. From Ehud Karni <ehud@unix.mvs.co.il>
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Tue, 01 Mar 2005 13:38:34 +0000 (2005-03-01) |
parents | 6165248b32a6 |
children | 23a17af379b1 d8411455de48 |
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 | |
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
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 |