Mercurial > emacs
annotate lisp/language/hebrew.el @ 39332:4f1342b70a04
*** empty log message ***
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 18 Sep 2001 11:31:02 +0000 |
parents | 67b464da13ec |
children | 95bb550ed1ff |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37112
diff
changeset
|
1 ;;; hebrew.el --- support for Hebrew -*- coding: iso-2022-7bit; -*- |
17052 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
18377
8b4a66c66dd6
Change copyright notice.
Richard M. Stallman <rms@gnu.org>
parents:
18309
diff
changeset
|
4 ;; Licensed to the Free Software Foundation. |
17052 | 5 |
6 ;; Keywords: multilingual, Hebrew | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs 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 ;; GNU Emacs 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 | |
17071 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
17052 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; For Hebrew, the character sets ISO8859-8 is supported. | |
37112 | 28 ;; See http://www.ecma.ch/ecma1/STAND/ECMA-121.HTM. |
17052 | 29 |
30 ;;; Code: | |
31 | |
32 (make-coding-system | |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
33 'hebrew-iso-8bit 2 ?8 |
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
34 "ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)" |
23899
5aca264ca763
Don't use sublists in the flags argument passed to make-coding-system.
Eli Zaretskii <eliz@gnu.org>
parents:
23158
diff
changeset
|
35 '(ascii hebrew-iso8859-8 nil nil |
20159
dce0d588d203
Give proper SAFE-CHARSET argument in each
Kenichi Handa <handa@m17n.org>
parents:
18544
diff
changeset
|
36 nil ascii-eol ascii-cntl nil nil nil nil nil t) |
20741
dcad2d056d80
Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20159
diff
changeset
|
37 '((safe-charsets ascii hebrew-iso8859-8) |
dcad2d056d80
Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20159
diff
changeset
|
38 (mime-charset . iso-8859-8))) |
17052 | 39 |
18520
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
40 (define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit) |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
41 |
29157
f0754aea38e3
(iso-8859-8-e, iso-8859-8-i): For now, just
Eli Zaretskii <eliz@gnu.org>
parents:
28906
diff
changeset
|
42 ;; These are for Explicit and Implicit directionality information, as |
f0754aea38e3
(iso-8859-8-e, iso-8859-8-i): For now, just
Eli Zaretskii <eliz@gnu.org>
parents:
28906
diff
changeset
|
43 ;; defined in RFC 1556. We don't yet support directional information |
f0754aea38e3
(iso-8859-8-e, iso-8859-8-i): For now, just
Eli Zaretskii <eliz@gnu.org>
parents:
28906
diff
changeset
|
44 ;; in bidi languages, so these aliases are a lie, especially as far as |
f0754aea38e3
(iso-8859-8-e, iso-8859-8-i): For now, just
Eli Zaretskii <eliz@gnu.org>
parents:
28906
diff
changeset
|
45 ;; iso-8859-8-e is concerned. FIXME. |
f0754aea38e3
(iso-8859-8-e, iso-8859-8-i): For now, just
Eli Zaretskii <eliz@gnu.org>
parents:
28906
diff
changeset
|
46 (define-coding-system-alias 'iso-8859-8-e 'hebrew-iso-8bit) |
f0754aea38e3
(iso-8859-8-e, iso-8859-8-i): For now, just
Eli Zaretskii <eliz@gnu.org>
parents:
28906
diff
changeset
|
47 (define-coding-system-alias 'iso-8859-8-i 'hebrew-iso-8bit) |
f0754aea38e3
(iso-8859-8-e, iso-8859-8-i): For now, just
Eli Zaretskii <eliz@gnu.org>
parents:
28906
diff
changeset
|
48 |
17052 | 49 (set-language-info-alist |
23029
0105e2a62bcf
("Hebrew"): Delete describe-function key.
Kenichi Handa <handa@m17n.org>
parents:
22982
diff
changeset
|
50 "Hebrew" '((charset . (hebrew-iso8859-8)) |
22714
e632673d8975
("Hebrew"): Add coding-priority.
Kenichi Handa <handa@m17n.org>
parents:
20741
diff
changeset
|
51 (coding-priority hebrew-iso-8bit) |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
52 (coding-system . (hebrew-iso-8bit)) |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22714
diff
changeset
|
53 (nonascii-translation . hebrew-iso8859-8) |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22714
diff
changeset
|
54 (input-method . "hebrew") |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22714
diff
changeset
|
55 (unibyte-display . hebrew-iso-8bit) |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
56 (sample-text . "Hebrew ,Hylem(B") |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
57 (documentation . "Right-to-left writing is not yet supported.") |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
58 )) |
17052 | 59 |
33778 | 60 (provide 'hebrew) |
61 | |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
62 ;;; hebrew.el ends here |