Some fixes to follow coding conventions.
[emacs.git] / lisp / language / hebrew.el
blob3579d2c394a92f401840f8bb74f35973f5336685
1 ;;; hebrew.el --- support for Hebrew -*- coding: iso-2022-7bit; -*-
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
6 ;; Keywords: multilingual, Hebrew
8 ;; This file is part of GNU Emacs.
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.
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.
20 ;; You should have received a copy of the GNU General Public License
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.
25 ;;; Commentary:
27 ;; For Hebrew, the character sets ISO8859-8 is supported.
28 ;; See http://www.ecma.ch/ecma1/STAND/ECMA-121.HTM.
30 ;;; Code:
32 (make-coding-system
33 'hebrew-iso-8bit 2 ?8
34 "ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)"
35 '(ascii hebrew-iso8859-8 nil nil
36 nil ascii-eol ascii-cntl nil nil nil nil nil t)
37 '((safe-charsets ascii hebrew-iso8859-8)
38 (mime-charset . iso-8859-8)))
40 (define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit)
42 ;; These are for Explicit and Implicit directionality information, as
43 ;; defined in RFC 1556. We don't yet support directional information
44 ;; in bidi languages, so these aliases are a lie, especially as far as
45 ;; iso-8859-8-e is concerned. FIXME.
46 (define-coding-system-alias 'iso-8859-8-e 'hebrew-iso-8bit)
47 (define-coding-system-alias 'iso-8859-8-i 'hebrew-iso-8bit)
49 (set-language-info-alist
50 "Hebrew" '((charset . (hebrew-iso8859-8))
51 (coding-priority hebrew-iso-8bit)
52 (coding-system . (hebrew-iso-8bit))
53 (nonascii-translation . hebrew-iso8859-8)
54 (input-method . "hebrew")
55 (unibyte-display . hebrew-iso-8bit)
56 (sample-text . "Hebrew \e,Hylem\e(B")
57 (documentation . "Right-to-left writing is not yet supported.")
60 (provide 'hebrew)
62 ;;; hebrew.el ends here