Merge from emacs--rel--22
[bpt/emacs.git] / lisp / language / hebrew.el
CommitLineData
0a10297a 1;;; hebrew.el --- support for Hebrew -*- coding: iso-2022-7bit; no-byte-compile: t -*-
4ed46869 2
38141d20 3;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
d4877ac1 4;; Free Software Foundation, Inc.
7976eda0 5;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
38141d20 6;; 2005, 2006, 2007, 2008
eaa61218
KH
7;; National Institute of Advanced Industrial Science and Technology (AIST)
8;; Registration Number H14PRO021
1fdc503d 9
4ed46869
KH
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
d7142f3e 16;; the Free Software Foundation; either version 3, or (at your option)
4ed46869
KH
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
369314dc 25;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
26;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
27;; Boston, MA 02110-1301, USA.
4ed46869
KH
28
29;;; Commentary:
30
eccac837 31;; For Hebrew, the character set ISO8859-8 is supported.
445559c9 32;; See http://www.ecma.ch/ecma1/STAND/ECMA-121.HTM.
eccac837 33;; Windows-1255 is also supported.
1fdc503d 34
4ed46869
KH
35;;; Code:
36
37(make-coding-system
4b9121fc 38 'hebrew-iso-8bit 2 ?8
5ef35063 39 "ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)."
f2719637 40 '(ascii hebrew-iso8859-8 nil nil
161e03ae 41 nil nil nil nil nil nil nil nil t nil nil t)
18d8be5d
KH
42 '((safe-charsets ascii hebrew-iso8859-8)
43 (mime-charset . iso-8859-8)))
4ed46869 44
71eabd24 45(define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit)
4b9121fc 46
b81fa2f9
EZ
47;; These are for Explicit and Implicit directionality information, as
48;; defined in RFC 1556. We don't yet support directional information
49;; in bidi languages, so these aliases are a lie, especially as far as
50;; iso-8859-8-e is concerned. FIXME.
51(define-coding-system-alias 'iso-8859-8-e 'hebrew-iso-8bit)
52(define-coding-system-alias 'iso-8859-8-i 'hebrew-iso-8bit)
53
4ed46869 54(set-language-info-alist
cf6991a3 55 "Hebrew" '((charset . (hebrew-iso8859-8))
e4dfd4f7 56 (coding-priority hebrew-iso-8bit)
4b9121fc 57 (coding-system . (hebrew-iso-8bit))
8f76845d
KH
58 (nonascii-translation . hebrew-iso8859-8)
59 (input-method . "hebrew")
60 (unibyte-display . hebrew-iso-8bit)
dc09922d 61 (sample-text . "Hebrew \e,Hylem\e(B")
1fdc503d 62 (documentation . "Right-to-left writing is not yet supported.")))
4ed46869 63
eccac837
DL
64(set-language-info-alist
65 "Windows-1255" '((coding-priority windows-1255)
66 (coding-system windows-1255)
67 (features code-pages)
5ef35063
WL
68 (documentation . "\
69Support for Windows-1255 encoding, e.g. for Yiddish.
1fdc503d 70Right-to-left writing is not yet supported.")))
eccac837 71
41da80b1
DL
72(provide 'hebrew)
73
ab5796a9 74;;; arch-tag: 3ca04f32-3f1e-498e-af46-8267498ba5d9
4b9121fc 75;;; hebrew.el ends here