]> code.delx.au - gnu-emacs/blob - lisp/language/hebrew.el
(thai-pre-write-conversion): Cancel previous
[gnu-emacs] / lisp / language / hebrew.el
1 ;;; hebrew.el --- Support for Hebrew -*- coding: iso-2022-7bit; -*-
2
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
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
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.
24
25 ;;; Commentary:
26
27 ;; For Hebrew, the character sets ISO8859-8 is supported.
28
29 ;;; Code:
30
31 (make-coding-system
32 'hebrew-iso-8bit 2 ?8
33 "ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)"
34 '((ascii t) (hebrew-iso8859-8 t) nil nil
35 nil ascii-eol ascii-cntl nil nil nil nil nil t)
36 '((safe-charsets ascii hebrew-iso8859-8)
37 (mime-charset . iso-8859-8)))
38
39 (define-coding-system-alias 'iso-8859-8 'hebrew-iso-8bit)
40
41 (defun setup-hebrew-environment ()
42 "Setup multilingual environment (MULE) for Hebrew.
43 But, please note that right-to-left writing is not yet supported."
44 (interactive)
45 (set-language-environment "Hebrew"))
46
47 (set-language-info-alist
48 "Hebrew" '((charset . (hebrew-iso8859-8))
49 (coding-priority hebrew-iso-8bit)
50 (coding-system . (hebrew-iso-8bit))
51 (nonascii-translation . hebrew-iso8859-8)
52 (input-method . "hebrew")
53 (unibyte-display . hebrew-iso-8bit)
54 (sample-text . "Hebrew \e,Hylem\e(B")
55 (documentation . "Right-to-left writing is not yet supported.")
56 ))
57
58 ;;; hebrew.el ends here