Add arch taglines
[bpt/emacs.git] / lisp / language / greek.el
CommitLineData
0a10297a 1;;; greek.el --- support for Greek -*- no-byte-compile: t -*-
4ed46869 2
4ed46869 3;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
fa526c4a 4;; Licensed to the Free Software Foundation.
4ed46869
KH
5
6;; Keywords: multilingual, Greek
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
369314dc
KH
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.
4ed46869
KH
24
25;;; Commentary:
26
27;; For Greek, the character set ISO8859-7 is supported.
28
29;;; Code:
30
31(make-coding-system
4b9121fc 32 'greek-iso-8bit 2 ?7
5ef35063 33 "ISO 2022 based 8-bit encoding for Greek (MIME:ISO-8859-7)."
ef60b636 34 '(ascii greek-iso8859-7 nil nil
4fdc6026 35 nil nil nil nil nil nil nil nil nil nil nil t)
ef60b636
KH
36 '((safe-charsets ascii greek-iso8859-7)
37 (mime-charset . iso-8859-7)))
4ed46869 38
71eabd24 39(define-coding-system-alias 'iso-8859-7 'greek-iso-8bit)
4b9121fc 40
4ed46869 41(set-language-info-alist
8f76845d 42 "Greek" '((charset . (greek-iso8859-7))
4b9121fc 43 (coding-system . (greek-iso-8bit))
5f29fdb2 44 (coding-priority greek-iso-8bit)
8f76845d
KH
45 (nonascii-translation . greek-iso8859-7)
46 (input-method . "greek")
47 (unibyte-display . greek-iso-8bit)
78eee0ed 48 (documentation . t)))
4ed46869 49
41da80b1
DL
50(provide 'greek)
51
ab5796a9 52;;; arch-tag: 9ba48d79-84bc-45e1-9318-685dc3921410
4ed46869 53;;; greek.el ends here