Mercurial > emacs
annotate leim/quail/hebrew.el @ 80317:e540c42e9741
Doc fix.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Tue, 11 Mar 2008 01:57:57 +0000 |
parents | 3ca83a726835 |
children | 606f2d163a64 4f1fd208c354 |
rev | line source |
---|---|
48309 | 1 ;;; hebrew.el --- Quail package for inputting Hebrew characters -*-coding: iso-2022-7bit;-*- |
24039 | 2 |
79727 | 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
4 ;; 2008 | |
67657 | 5 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
6 ;; Registration Number H14PRO021 | |
24039 | 7 |
8 ;; Keywords: mule, input method, Hebrew | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
78308
126deea128b3
Restore comma mistakenly removed in last change.
Glenn Morris <rgm@gnu.org>
parents:
78303
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
24039 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64083 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
24039 | 26 |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
27 ;;; Commentary: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
28 |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
29 ;;; Code: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
30 |
24039 | 31 (require 'quail) |
32 | |
33 (quail-define-package | |
34 "hebrew" "Hebrew" ",Hr(B" nil "Hebrew (ISO 8859-8) input method. | |
35 | |
36 Based on Hebrew typewriter keys. | |
37 Hebrew letters are assigned to lowercases. | |
38 " nil t t t t nil nil nil nil nil t) | |
39 | |
54481 | 40 ;; 1! 2@ 3# 4$ 5% 6^ 7& 8* 9( 0) -_ =+ ;~ |
41 ;; /Q 'W ,Hw(BE ,Hx(BR ,H`(BT ,Hh(BY ,He(BU ,Ho(BI ,Hm(BO ,Ht(BP [{ ]} | |
42 ;; ,Hy(BA ,Hc(BS ,Hb(BD ,Hk(BF ,Hr(BG ,Hi(BH ,Hg(BJ ,Hl(BK ,Hj(BL ,Hs(B: ," \| | |
43 ;; ,Hf(BZ ,Hq(BX ,Ha(BC ,Hd(BV ,Hp(BB ,Hn(BN ,Hv(BM ,Hz(B< ,Hu(B> .? | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48309
diff
changeset
|
44 ;; |
24039 | 45 |
46 (quail-define-rules | |
47 ("`" ?\;) | |
48 ("q" ?/) | |
49 ("w" ?') | |
50 ("e" ?,Hw(B) | |
51 ("r" ?,Hx(B) | |
52 ("t" ?,H`(B) | |
53 ("y" ?,Hh(B) | |
54 ("u" ?,He(B) | |
55 ("i" ?,Ho(B) | |
56 ("o" ?,Hm(B) | |
57 ("p" ?,Ht(B) | |
58 ("a" ?,Hy(B) | |
59 ("s" ?,Hc(B) | |
60 ("d" ?,Hb(B) | |
61 ("f" ?,Hk(B) | |
62 ("g" ?,Hr(B) | |
63 ("h" ?,Hi(B) | |
64 ("j" ?,Hg(B) | |
65 ("k" ?,Hl(B) | |
66 ("l" ?,Hj(B) | |
67 (";" ?,Hs(B) | |
68 ("z" ?,Hf(B) | |
69 ("x" ?,Hq(B) | |
70 ("c" ?,Ha(B) | |
71 ("v" ?,Hd(B) | |
72 ("b" ?,Hp(B) | |
73 ("n" ?,Hn(B) | |
74 ("m" ?,Hv(B) | |
75 ("," ?,Hz(B) | |
76 ("." ?,Hu(B) | |
77 ("/" ?.) | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
78 ("'" ?,)) |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
79 |
52401 | 80 ;;; arch-tag: 771b887d-15af-4a4d-b4ce-a4a86f5ca0cf |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
24039
diff
changeset
|
81 ;;; hebrew.el ends here |