Mercurial > emacs
annotate lisp/language/ethiopic.el @ 93382:8e46096e0cb3
* vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
(vc-status-refresh): Create a temporary buffer and call the
`dir-status' backend function from that buffer.
* vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
(vc-bzr-after-dir-status): Don't kill the buffer.
* vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
(vc-cvs-after-dir-status): Don't kill the buffer.
* vc-git.el (vc-git-dir-status): Don't create a buffer.
(vc-git-after-dir-status-stage2): Don't kill the buffer.
* vc-hg.el (vc-hg-dir-status): Don't create a buffer.
(vc-hg-after-dir-status): Don't kill the buffer.
* vc-svn.el (vc-svn-dir-status): Don't create a buffer.
(vc-svn-after-dir-status): Don't kill the buffer.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sat, 29 Mar 2008 05:34:52 +0000 |
parents | 606f2d163a64 |
children | 1e3a407766b9 |
rev | line source |
---|---|
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
1 ;;; ethiopic.el --- support for Ethiopic -*- coding: utf-8-emacs; -*- |
17052 | 2 |
79711 | 3 ;; Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
74544 | 4 ;; Free Software Foundation, Inc. |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
74544
diff
changeset
|
5 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
79711 | 6 ;; 2005, 2006, 2007, 2008 |
62396 | 7 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
8 ;; Registration Number H14PRO021 | |
17052 | 9 |
10 ;; Keywords: multilingual, Ethiopic | |
11 | |
12 ;; This file is part of GNU Emacs. | |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
78309
0938de05f510
Restore comma mistakenly removed in last change.
Glenn Morris <rgm@gnu.org>
parents:
78300
diff
changeset
|
16 ;; the Free Software Foundation; either version 3, or (at your option) |
17052 | 17 ;; any later version. |
18 | |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
17314
f438ebf1c679
Fix FSF address in comment.
Kenichi Handa <handa@m17n.org>
parents:
17299
diff
changeset
|
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 ;; Boston, MA 02110-1301, USA. | |
17299 | 28 |
36429
1610938fcd8b
("Ethiopic"): Add documentation.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
29 ;; Author: TAKAHASHI Naoto <ntakahas@m17n.org> |
17052 | 30 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36429
diff
changeset
|
31 ;;; Commentary: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36429
diff
changeset
|
32 |
17052 | 33 ;;; Code: |
34 | |
35 (define-ccl-program ccl-encode-ethio-font | |
36 '(0 | |
17299 | 37 ;; In: R0:ethiopic (not checked) |
17052 | 38 ;; R1:position code 1 |
39 ;; R2:position code 2 | |
40 ;; Out: R1:font code point 1 | |
41 ;; R2:font code point 2 | |
42 ((r1 -= 33) | |
43 (r2 -= 33) | |
44 (r1 *= 94) | |
45 (r2 += r1) | |
17299 | 46 (if (r2 < 256) |
90281 | 47 (r1 = #x12) |
17299 | 48 (if (r2 < 448) |
90281 | 49 ((r1 = #x13) (r2 -= 256)) |
50 ((r1 = #xfd) (r2 -= 208)) | |
17299 | 51 )))) |
19090
7d36a4bbe75e
(ccl-encode-ethio-font): Fix typo in doc-string.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
52 "CCL program to encode an Ethiopic code to code point of Ethiopic font.") |
17052 | 53 |
54 (setq font-ccl-encoder-alist | |
17299 | 55 (cons (cons "ethiopic" ccl-encode-ethio-font) font-ccl-encoder-alist)) |
17052 | 56 |
57 (set-language-info-alist | |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22764
diff
changeset
|
58 "Ethiopic" '((setup-function . setup-ethiopic-environment-internal) |
22518
64b8166a9747
Set `exit-function' of Ethiopic
Kenichi Handa <handa@m17n.org>
parents:
20744
diff
changeset
|
59 (exit-function . exit-ethiopic-environment) |
20744
48d79ef65489
Register coding-priority key in
Kenichi Handa <handa@m17n.org>
parents:
19090
diff
changeset
|
60 (charset ethiopic) |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
61 (coding-system utf-8-emacs) |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
62 (coding-priority utf-8-emacs) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22764
diff
changeset
|
63 (input-method . "ethiopic") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22764
diff
changeset
|
64 (features ethio-util) |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
65 (sample-text . "ፊደል") |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
66 (documentation . |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
67 "This language envrironment provides these function key bindings: |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
68 [f3] ethio-fidel-to-sera-buffer |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
69 [S-f3] ethio-fidel-to-sera-region |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
70 [C-f3] ethio-fidel-to-sera-marker |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
71 |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
72 [f4] ethio-sera-to-fidel-buffer |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
73 [S-f4] ethio-sera-to-fidel-region |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
74 [C-f4] ethio-sera-to-fidel-marker |
36429
1610938fcd8b
("Ethiopic"): Add documentation.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
75 |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
76 [S-f5] ethio-toggle-punctuation |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
77 [S-f6] ethio-modify-vowel |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
78 [S-f7] ethio-replace-space |
36429
1610938fcd8b
("Ethiopic"): Add documentation.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
79 |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
80 [S-f9] ethio-replace-space |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
81 [C-f9] ethio-toggle-space" |
36429
1610938fcd8b
("Ethiopic"): Add documentation.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
82 ))) |
17052 | 83 |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
84 ;; For automatic composition |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
85 (aset composition-function-table ? 'ethio-composition-function) |
90281 | 86 (aset composition-function-table ?፟ 'ethio-composition-function) |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
87 |
33778 | 88 (provide 'ethiopic) |
89 | |
52401 | 90 ;;; arch-tag: e81329d9-1286-43ba-92fd-54ce5c7b213c |
17052 | 91 ;;; ethiopic.el ends here |