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)
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.
27 ;; ISO 8859-8 (Hebrew) support.
31 ;; Syntax of Hebrew characters
32 (loop for c from 96 to 122
33 do (modify-syntax-entry (make-char 'hebrew-iso8859-8 c) "w"))
34 (modify-syntax-entry (make-char 'hebrew-iso8859-8 32) "w") ; no-break space
39 "ISO-8859-8 (ISO 2022 based 8-bit encoding for Hebrew)"
41 charset-g1 hebrew-iso8859-8
49 'ctext-hebrew 'iso2022
50 "Coding-system for Hebrew."
52 charset-g1 hebrew-iso8859-8
58 (defun setup-hebrew-environment ()
59 "Setup multilingual environment (MULE) for Hebrew.
60 Note: right-to-left writing is not yet supported."
62 (set-language-environment "Hebrew"))
64 (set-language-info-alist
65 "Hebrew" '((charset hebrew-iso8859-8)
66 (coding-system iso-8859-8)
67 (coding-priority iso-8859-8)
68 (input-method . "hebrew")
69 (sample-text . "Hebrew
\e[2]
\e,Hylem
\e[0]
\e(B")
70 (documentation . "Right-to-left writing is not yet supported.")
73 ;;; hebrew.el ends here