*** empty log message ***
[emacs.git] / lisp / language / greek.el
blobbd67b878ee67ca2ee861ba30140dfbc4b65ae0ad
1 ;;; greek.el --- support for Greek -*- no-byte-compile: t -*-
3 ;; Copyright (C) 1995
4 ;; National Institute of Advanced Industrial Science and Technology (AIST)
5 ;; Registration Number H14PRO021
7 ;; Keywords: multilingual, Greek
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;; For Greek, the character set ISO8859-7 is supported.
30 ;;; Code:
32 (make-coding-system
33 'greek-iso-8bit 2 ?7
34 "ISO 2022 based 8-bit encoding for Greek (MIME:ISO-8859-7)."
35 '(ascii greek-iso8859-7 nil nil
36 nil nil nil nil nil nil nil nil nil nil nil t)
37 '((safe-charsets ascii greek-iso8859-7)
38 (mime-charset . iso-8859-7)))
40 (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit)
42 (set-language-info-alist
43 "Greek" '((charset . (greek-iso8859-7))
44 (coding-system . (greek-iso-8bit))
45 (coding-priority greek-iso-8bit)
46 (nonascii-translation . greek-iso8859-7)
47 (input-method . "greek")
48 (unibyte-display . greek-iso-8bit)
49 (documentation . t)))
51 (provide 'greek)
53 ;;; arch-tag: 9ba48d79-84bc-45e1-9318-685dc3921410
54 ;;; greek.el ends here