Add 2011 to FSF/AIST copyright years.
[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
5df4f04c 3;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
d4877ac1 4;; Free Software Foundation, Inc.
7976eda0 5;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5df4f04c 6;; 2005, 2006, 2007, 2008, 2009, 2010, 2011
eaa61218
KH
7;; National Institute of Advanced Industrial Science and Technology (AIST)
8;; Registration Number H14PRO021
1fdc503d 9
8f924df7
KH
10;; Copyright (C) 2003
11;; National Institute of Advanced Industrial Science and Technology (AIST)
12;; Registration Number H13PRO009
1fdc503d 13
4ed46869
KH
14;; Keywords: multilingual, Hebrew
15
16;; This file is part of GNU Emacs.
17
4936186e 18;; GNU Emacs is free software: you can redistribute it and/or modify
4ed46869 19;; it under the terms of the GNU General Public License as published by
4936186e
GM
20;; the Free Software Foundation, either version 3 of the License, or
21;; (at your option) any later version.
4ed46869
KH
22
23;; GNU Emacs is distributed in the hope that it will be useful,
24;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26;; GNU General Public License for more details.
27
28;; You should have received a copy of the GNU General Public License
4936186e 29;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
4ed46869
KH
30
31;;; Commentary:
32
eccac837 33;; For Hebrew, the character set ISO8859-8 is supported.
445559c9 34;; See http://www.ecma.ch/ecma1/STAND/ECMA-121.HTM.
eccac837 35;; Windows-1255 is also supported.
1fdc503d 36
4ed46869
KH
37;;; Code:
38
e1915ab3
KH
39(define-coding-system 'hebrew-iso-8bit
40 "ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)."
41 :coding-type 'charset
42 :mnemonic ?8
43 :charset-list '(iso-8859-8)
d21363d3 44 :mime-charset 'iso-8859-8)
4ed46869 45
71eabd24 46(define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit)
4b9121fc 47
b81fa2f9
EZ
48;; These are for Explicit and Implicit directionality information, as
49;; defined in RFC 1556. We don't yet support directional information
50;; in bidi languages, so these aliases are a lie, especially as far as
51;; iso-8859-8-e is concerned. FIXME.
52(define-coding-system-alias 'iso-8859-8-e 'hebrew-iso-8bit)
53(define-coding-system-alias 'iso-8859-8-i 'hebrew-iso-8bit)
54
4ed46869 55(set-language-info-alist
8f924df7 56 "Hebrew" '((charset iso-8859-8)
e4dfd4f7 57 (coding-priority hebrew-iso-8bit)
b523ee67 58 (coding-system hebrew-iso-8bit windows-1255 cp862)
e1915ab3 59 (nonascii-translation . iso-8859-8)
8f76845d
KH
60 (input-method . "hebrew")
61 (unibyte-display . hebrew-iso-8bit)
dc09922d 62 (sample-text . "Hebrew \e,Hylem\e(B")
1fdc503d 63 (documentation . "Right-to-left writing is not yet supported.")))
4ed46869 64
eccac837
DL
65(set-language-info-alist
66 "Windows-1255" '((coding-priority windows-1255)
67 (coding-system windows-1255)
5ef35063
WL
68 (documentation . "\
69Support for Windows-1255 encoding, e.g. for Yiddish.
1fdc503d 70Right-to-left writing is not yet supported.")))
eccac837 71
5a41bd8b
DL
72(define-coding-system 'windows-1255
73 "windows-1255 (Hebrew) encoding (MIME: WINDOWS-1255)"
74 :coding-type 'charset
75 :mnemonic ?h
76 :charset-list '(windows-1255)
77 :mime-charset 'windows-1255)
78(define-coding-system-alias 'cp1255 'windows-1255)
79
bac4bf38 80(define-coding-system 'cp862
b523ee67 81 "DOS codepage 862 (Hebrew)"
bac4bf38
DL
82 :coding-type 'charset
83 :mnemonic ?D
84 :charset-list '(cp862)
85 :mime-charset 'cp862)
86(define-coding-system-alias 'ibm862 'cp862)
87
41da80b1
DL
88(provide 'hebrew)
89
cbee283d 90;; arch-tag: 3ca04f32-3f1e-498e-af46-8267498ba5d9
4b9121fc 91;;; hebrew.el ends here