Mercurial > emacs
annotate lisp/language/ethiopic.el @ 95065:36c19ba93dca
(fortran-font-lock-keywords-2): Add .eqv., .neqv.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 17 May 2008 20:08:37 +0000 |
parents | 55b7f25d920a |
children | a9dc0e7c3f2b |
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 | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17052 | 15 ;; it under the terms of the GNU General Public License as published by |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
16 ;; the Free Software Foundation, either version 3 of the License, or |
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
17 ;; (at your option) any later version. |
17052 | 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 | |
94665
55b7f25d920a
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17299 | 26 |
36429
1610938fcd8b
("Ethiopic"): Add documentation.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
27 ;; Author: TAKAHASHI Naoto <ntakahas@m17n.org> |
17052 | 28 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36429
diff
changeset
|
29 ;;; Commentary: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
36429
diff
changeset
|
30 |
17052 | 31 ;;; Code: |
32 | |
33 (define-ccl-program ccl-encode-ethio-font | |
34 '(0 | |
17299 | 35 ;; In: R0:ethiopic (not checked) |
17052 | 36 ;; R1:position code 1 |
37 ;; R2:position code 2 | |
38 ;; Out: R1:font code point 1 | |
39 ;; R2:font code point 2 | |
40 ((r1 -= 33) | |
41 (r2 -= 33) | |
42 (r1 *= 94) | |
43 (r2 += r1) | |
17299 | 44 (if (r2 < 256) |
90281 | 45 (r1 = #x12) |
17299 | 46 (if (r2 < 448) |
90281 | 47 ((r1 = #x13) (r2 -= 256)) |
48 ((r1 = #xfd) (r2 -= 208)) | |
17299 | 49 )))) |
19090
7d36a4bbe75e
(ccl-encode-ethio-font): Fix typo in doc-string.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
50 "CCL program to encode an Ethiopic code to code point of Ethiopic font.") |
17052 | 51 |
52 (setq font-ccl-encoder-alist | |
17299 | 53 (cons (cons "ethiopic" ccl-encode-ethio-font) font-ccl-encoder-alist)) |
17052 | 54 |
55 (set-language-info-alist | |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22764
diff
changeset
|
56 "Ethiopic" '((setup-function . setup-ethiopic-environment-internal) |
22518
64b8166a9747
Set `exit-function' of Ethiopic
Kenichi Handa <handa@m17n.org>
parents:
20744
diff
changeset
|
57 (exit-function . exit-ethiopic-environment) |
20744
48d79ef65489
Register coding-priority key in
Kenichi Handa <handa@m17n.org>
parents:
19090
diff
changeset
|
58 (charset ethiopic) |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
59 (coding-system utf-8-emacs) |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
60 (coding-priority utf-8-emacs) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22764
diff
changeset
|
61 (input-method . "ethiopic") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22764
diff
changeset
|
62 (features ethio-util) |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
63 (sample-text . "ፊደል") |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38436
diff
changeset
|
64 (documentation . |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
65 "This language envrironment provides these function key bindings: |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
66 [f3] ethio-fidel-to-sera-buffer |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
67 [S-f3] ethio-fidel-to-sera-region |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
68 [C-f3] ethio-fidel-to-sera-marker |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
69 |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
70 [f4] ethio-sera-to-fidel-buffer |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
71 [S-f4] ethio-sera-to-fidel-region |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
72 [C-f4] ethio-sera-to-fidel-marker |
36429
1610938fcd8b
("Ethiopic"): Add documentation.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
73 |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
74 [S-f5] ethio-toggle-punctuation |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
75 [S-f6] ethio-modify-vowel |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
76 [S-f7] ethio-replace-space |
36429
1610938fcd8b
("Ethiopic"): Add documentation.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
77 |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
78 [S-f9] ethio-replace-space |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
79 [C-f9] ethio-toggle-space" |
36429
1610938fcd8b
("Ethiopic"): Add documentation.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
80 ))) |
17052 | 81 |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
82 ;; For automatic composition |
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
83 (aset composition-function-table ? 'ethio-composition-function) |
90281 | 84 (aset composition-function-table ?፟ 'ethio-composition-function) |
90123
b34d1b1795af
Encoding changed to utf-8-emacs.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
85 |
33778 | 86 (provide 'ethiopic) |
87 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
88 ;; arch-tag: e81329d9-1286-43ba-92fd-54ce5c7b213c |
17052 | 89 ;;; ethiopic.el ends here |