Mercurial > emacs
annotate lisp/language/hebrew.el @ 18228:81fa1f5547eb
Require `format'.
(iso-translate-conventions): Take bounds as args.
(iso-spanish, iso-german): Take bounds as args.
(iso-iso2tex, iso-tex2iso, iso-gtex2iso, iso-iso2gtex): Likewise.
(iso-iso2duden-trans-tab): New variable.
(iso-iso2duden): New command.
(iso-cvt-read-only, iso-cvt-write-only): New commands.
(is-german-tex-p): Function deleted.
(iso-fix-iso2tex, iso-fix-tex2iso): Functions deleted.
(iso-cvt-ffh, iso-cvt-wfh, iso-cvt-ash): Functions deleted.
(iso-cvt-define-menu): New function.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 12 Jun 1997 05:22:15 +0000 |
parents | 0745f30aec66 |
children | bd8b521f5218 |
rev | line source |
---|---|
17052 | 1 ;;; hebrew.el --- Support for Hebrew |
2 | |
3 ;; Copyright (C) 1995 Free Software Foundation, Inc. | |
4 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
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 | |
17071 | 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. | |
17052 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; For Hebrew, the character sets ISO8859-8 is supported. | |
28 | |
29 ;;; Code: | |
30 | |
31 (make-coding-system | |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
32 'hebrew-iso-8bit 2 ?8 |
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
33 "ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)" |
17052 | 34 '((ascii t) (hebrew-iso8859-8 t) nil nil |
35 nil ascii-eol ascii-cntl nil nil nil nil nil t)) | |
36 | |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
37 (define-coding-system-alias 'hebrew-iso-8bit 'iso-8859-8) |
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
38 |
17052 | 39 (register-input-method |
40 "Hebrew" '("quail-hebrew" quail-use-package "quail/hebrew")) | |
41 | |
42 (defun setup-hebrew-environment () | |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
43 "Setup multilingual environment (MULE) for Hebrew. |
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
44 But, please note that right-to-left writing is not yet supported." |
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
45 (interactive) |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
46 (setup-8-bit-environment 'hebrew-iso8859-8 'hebrew-iso-8bit |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
47 '("Hebrew" . "quail-hebrew"))) |
17052 | 48 |
49 (set-language-info-alist | |
50 "Hebrew" '((setup-function . setup-hebrew-environment) | |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
51 (describe-function . describe-hebrew-support) |
17052 | 52 (charset . (hebrew-iso8859-8)) |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
53 (coding-system . (hebrew-iso-8bit)) |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
54 (sample-text . "Hebrew ,Hylem(B") |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
55 (documentation . "Right-to-left writing is not yet supported.") |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
56 )) |
17052 | 57 |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
58 ;;; hebrew.el ends here |