428
|
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
|
450
|
27 ;; ISO 8859-8 (Hebrew) support.
|
428
|
28
|
|
29 ;;; Code:
|
|
30
|
778
|
31 ; (make-charset 'hebrew-iso8859-8
|
|
32 ; "Right-Hand Part of Latin/Hebrew Alphabet (ISO/IEC 8859-8): ISO-IR-138"
|
|
33 ; '(dimension
|
|
34 ; 1
|
|
35 ; registry "ISO8859-8"
|
|
36 ; chars 96
|
|
37 ; columns 1
|
|
38 ; direction r2l
|
|
39 ; final ?H
|
|
40 ; graphic 1
|
|
41 ; short-name "RHP of ISO8859/8"
|
|
42 ; long-name "RHP of Hebrew (ISO 8859-8): ISO-IR-138"
|
|
43 ; ))
|
|
44
|
428
|
45 ;; Syntax of Hebrew characters
|
|
46 (loop for c from 96 to 122
|
|
47 do (modify-syntax-entry (make-char 'hebrew-iso8859-8 c) "w"))
|
|
48 (modify-syntax-entry (make-char 'hebrew-iso8859-8 32) "w") ; no-break space
|
|
49
|
|
50
|
|
51 (make-coding-system
|
|
52 'iso-8859-8 'iso2022
|
771
|
53 "ISO-8859-8 (Hebrew)"
|
428
|
54 '(charset-g0 ascii
|
|
55 charset-g1 hebrew-iso8859-8
|
|
56 charset-g2 t
|
|
57 charset-g3 t
|
|
58 no-iso6429 t
|
|
59 mnemonic "MIME/Hbrw"
|
|
60 ))
|
|
61
|
|
62 (make-coding-system
|
|
63 'ctext-hebrew 'iso2022
|
771
|
64 "ISO-8859-8-E (Hebrew, explicit directional coding)"
|
428
|
65 '(charset-g0 ascii
|
|
66 charset-g1 hebrew-iso8859-8
|
|
67 charset-g2 t
|
|
68 charset-g3 t
|
|
69 mnemonic "CText/Hbrw"
|
|
70 ))
|
|
71
|
|
72 (set-language-info-alist
|
|
73 "Hebrew" '((charset hebrew-iso8859-8)
|
|
74 (coding-system iso-8859-8)
|
|
75 (coding-priority iso-8859-8)
|
|
76 (input-method . "hebrew")
|
|
77 (sample-text . "Hebrew [2],Hylem[0](B")
|
|
78 (documentation . "Right-to-left writing is not yet supported.")
|
|
79 ))
|
|
80
|
|
81 ;;; hebrew.el ends here
|