Mercurial > emacs
annotate lisp/language/hebrew.el @ 90143:146c086df160
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-37
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 241-257)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 59-65)
- Update from CVS
- Merge from emacs--cvs-trunk--0
- (mm-string-to-multibyte): Use Gnus trunk definition.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 14 Apr 2005 05:03:52 +0000 |
parents | 68c22ea6027c |
children | f042e7c0fe20 |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
42152
diff
changeset
|
1 ;;; hebrew.el --- support for Hebrew -*- coding: iso-2022-7bit; no-byte-compile: t -*- |
17052 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
89483 | 4 ;; Licensed to the Free Software Foundation. |
88558
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
5 ;; Copyright (C) 2001, 2002 Free Software Foundation, Inc. |
89483 | 6 ;; Copyright (C) 2003 |
7 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
8 ;; Registration Number H13PRO009 | |
42058 | 9 |
17052 | 10 ;; Keywords: multilingual, Hebrew |
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 | |
16 ;; the Free Software Foundation; either version 2, or (at your option) | |
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 | |
17071 | 25 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
27 ;; Boston, MA 02111-1307, USA. | |
17052 | 28 |
29 ;;; Commentary: | |
30 | |
42052 | 31 ;; For Hebrew, the character set ISO8859-8 is supported. |
37112 | 32 ;; See http://www.ecma.ch/ecma1/STAND/ECMA-121.HTM. |
42052 | 33 ;; Windows-1255 is also supported. |
42058 | 34 |
17052 | 35 ;;; Code: |
36 | |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
37 (define-coding-system 'hebrew-iso-8bit |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
38 "ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)." |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
39 :coding-type 'charset |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
40 :mnemonic ?8 |
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
41 :charset-list '(iso-8859-8) |
88513 | 42 :mime-charset 'iso-8859-8) |
17052 | 43 |
18520
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
44 (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
|
45 |
29157
f0754aea38e3
(iso-8859-8-e, iso-8859-8-i): For now, just
Eli Zaretskii <eliz@gnu.org>
parents:
28906
diff
changeset
|
46 ;; 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
|
47 ;; 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
|
48 ;; 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
|
49 ;; 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
|
50 (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
|
51 (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
|
52 |
17052 | 53 (set-language-info-alist |
89483 | 54 "Hebrew" '((charset iso-8859-8) |
22714
e632673d8975
("Hebrew"): Add coding-priority.
Kenichi Handa <handa@m17n.org>
parents:
20741
diff
changeset
|
55 (coding-priority hebrew-iso-8bit) |
88707
42305f57ba27
("Hebrew"): Add windows-1255, cp862 coding
Dave Love <fx@gnu.org>
parents:
88619
diff
changeset
|
56 (coding-system hebrew-iso-8bit windows-1255 cp862) |
88414
fad0f879877f
Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents:
42152
diff
changeset
|
57 (nonascii-translation . iso-8859-8) |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22714
diff
changeset
|
58 (input-method . "hebrew") |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22714
diff
changeset
|
59 (unibyte-display . hebrew-iso-8bit) |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
60 (sample-text . "Hebrew ,Hylem(B") |
42058 | 61 (documentation . "Right-to-left writing is not yet supported."))) |
17052 | 62 |
42052 | 63 (set-language-info-alist |
64 "Windows-1255" '((coding-priority windows-1255) | |
65 (coding-system windows-1255) | |
42152 | 66 (documentation . "\ |
67 Support for Windows-1255 encoding, e.g. for Yiddish. | |
42058 | 68 Right-to-left writing is not yet supported."))) |
42052 | 69 |
88558
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
70 (define-coding-system 'windows-1255 |
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
71 "windows-1255 (Hebrew) encoding (MIME: WINDOWS-1255)" |
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
72 :coding-type 'charset |
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
73 :mnemonic ?h |
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
74 :charset-list '(windows-1255) |
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
75 :mime-charset 'windows-1255) |
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
76 (define-coding-system-alias 'cp1255 'windows-1255) |
cb333bb24363
(windows-1255, cp1255): New coding systems.
Dave Love <fx@gnu.org>
parents:
88513
diff
changeset
|
77 |
88619
3157a3f9d92d
(cp862, ibm862): New coding systems.
Dave Love <fx@gnu.org>
parents:
88558
diff
changeset
|
78 (define-coding-system 'cp862 |
88707
42305f57ba27
("Hebrew"): Add windows-1255, cp862 coding
Dave Love <fx@gnu.org>
parents:
88619
diff
changeset
|
79 "DOS codepage 862 (Hebrew)" |
88619
3157a3f9d92d
(cp862, ibm862): New coding systems.
Dave Love <fx@gnu.org>
parents:
88558
diff
changeset
|
80 :coding-type 'charset |
3157a3f9d92d
(cp862, ibm862): New coding systems.
Dave Love <fx@gnu.org>
parents:
88558
diff
changeset
|
81 :mnemonic ?D |
3157a3f9d92d
(cp862, ibm862): New coding systems.
Dave Love <fx@gnu.org>
parents:
88558
diff
changeset
|
82 :charset-list '(cp862) |
3157a3f9d92d
(cp862, ibm862): New coding systems.
Dave Love <fx@gnu.org>
parents:
88558
diff
changeset
|
83 :mime-charset 'cp862) |
3157a3f9d92d
(cp862, ibm862): New coding systems.
Dave Love <fx@gnu.org>
parents:
88558
diff
changeset
|
84 (define-coding-system-alias 'ibm862 'cp862) |
3157a3f9d92d
(cp862, ibm862): New coding systems.
Dave Love <fx@gnu.org>
parents:
88558
diff
changeset
|
85 |
33778 | 86 (provide 'hebrew) |
87 | |
89909 | 88 ;;; arch-tag: 3ca04f32-3f1e-498e-af46-8267498ba5d9 |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
89 ;;; hebrew.el ends here |