1997-02-20 07:02:49 +00:00
|
|
|
|
;;; hebrew.el --- Support for Hebrew
|
|
|
|
|
|
|
|
|
|
;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
|
1997-06-22 08:57:18 +00:00
|
|
|
|
;; Licensed to the Free Software Foundation.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;; Keywords: multilingual, Hebrew
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1997-02-23 09:20:52 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; For Hebrew, the character sets ISO8859-8 is supported.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(make-coding-system
|
1997-06-10 01:08:21 +00:00
|
|
|
|
'hebrew-iso-8bit 2 ?8
|
|
|
|
|
"ISO 2022 based 8-bit encoding for Hebrew (MIME:ISO-8859-8)"
|
1997-02-20 07:02:49 +00:00
|
|
|
|
'((ascii t) (hebrew-iso8859-8 t) nil nil
|
|
|
|
|
nil ascii-eol ascii-cntl nil nil nil nil nil t))
|
|
|
|
|
|
1997-06-10 01:08:21 +00:00
|
|
|
|
(define-coding-system-alias 'hebrew-iso-8bit 'iso-8859-8)
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(defun setup-hebrew-environment ()
|
1997-05-12 07:00:16 +00:00
|
|
|
|
"Setup multilingual environment (MULE) for Hebrew.
|
|
|
|
|
But, please note that right-to-left writing is not yet supported."
|
|
|
|
|
(interactive)
|
1997-06-10 01:08:21 +00:00
|
|
|
|
(setup-8-bit-environment 'hebrew-iso8859-8 'hebrew-iso-8bit
|
1997-05-28 03:39:03 +00:00
|
|
|
|
'("Hebrew" . "quail-hebrew")))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(set-language-info-alist
|
|
|
|
|
"Hebrew" '((setup-function . setup-hebrew-environment)
|
1997-05-12 07:00:16 +00:00
|
|
|
|
(describe-function . describe-hebrew-support)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(charset . (hebrew-iso8859-8))
|
1997-06-10 01:08:21 +00:00
|
|
|
|
(coding-system . (hebrew-iso-8bit))
|
1997-05-12 07:00:16 +00:00
|
|
|
|
(sample-text . "Hebrew ,Hylem(B")
|
1997-05-28 03:39:03 +00:00
|
|
|
|
(documentation . "Right-to-left writing is not yet supported.")
|
1997-05-16 00:59:09 +00:00
|
|
|
|
))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-06-10 01:08:21 +00:00
|
|
|
|
;;; hebrew.el ends here
|