(vc-cvs-checkout): Fix bug that broke C-x v ~-style checkouts.
[bpt/emacs.git] / lisp / language / hebrew.el
CommitLineData
56c8bc03 1;;; hebrew.el --- Support for Hebrew -*- coding: iso-2022-7bit; -*-
4ed46869 2
4ed46869 3;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
fa526c4a 4;; Licensed to the Free Software Foundation.
4ed46869
KH
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
369314dc
KH
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.
4ed46869
KH
24
25;;; Commentary:
26
27;; For Hebrew, the character sets ISO8859-8 is supported.
28
29;;; Code:
30
31(make-coding-system
4b9121fc
KH
32 'hebrew-iso-8bit 2 ?8
33 "ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)"
f2719637 34 '(ascii hebrew-iso8859-8 nil nil
6def6186 35 nil ascii-eol ascii-cntl nil nil nil nil nil t)
18d8be5d
KH
36 '((safe-charsets ascii hebrew-iso8859-8)
37 (mime-charset . iso-8859-8)))
4ed46869 38
71eabd24 39(define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit)
4b9121fc 40
b81fa2f9
EZ
41;; These are for Explicit and Implicit directionality information, as
42;; defined in RFC 1556. We don't yet support directional information
43;; in bidi languages, so these aliases are a lie, especially as far as
44;; iso-8859-8-e is concerned. FIXME.
45(define-coding-system-alias 'iso-8859-8-e 'hebrew-iso-8bit)
46(define-coding-system-alias 'iso-8859-8-i 'hebrew-iso-8bit)
47
4ed46869 48(set-language-info-alist
cf6991a3 49 "Hebrew" '((charset . (hebrew-iso8859-8))
e4dfd4f7 50 (coding-priority hebrew-iso-8bit)
4b9121fc 51 (coding-system . (hebrew-iso-8bit))
8f76845d
KH
52 (nonascii-translation . hebrew-iso8859-8)
53 (input-method . "hebrew")
54 (unibyte-display . hebrew-iso-8bit)
dc09922d 55 (sample-text . "Hebrew \e,Hylem\e(B")
335a7ad7 56 (documentation . "Right-to-left writing is not yet supported.")
78eee0ed 57 ))
4ed46869 58
4b9121fc 59;;; hebrew.el ends here