Swap args to define-coding-system-alias.
[bpt/emacs.git] / lisp / language / greek.el
1 ;;; greek.el --- Support for Greek
2
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
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
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
27 ;; For Greek, the character set ISO8859-7 is supported.
28
29 ;;; Code:
30
31 (make-coding-system
32 'greek-iso-8bit 2 ?7
33 "ISO 2022 based 8-bit encoding for Greek (MIME:ISO-8859-7)"
34 '((ascii t) (greek-iso8859-7 t) nil nil
35 nil ascii-eol ascii-cntl nil nil nil nil))
36
37 (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit)
38
39 (defun setup-greek-environment ()
40 "Setup multilingual environment (MULE) for Greek."
41 (interactive)
42 (setup-8-bit-environment 'greek-iso8859-7 'greek-iso-8bit
43 '("Greek" . "quail-greek")))
44
45 (set-language-info-alist
46 "Greek" '((setup-function . setup-greek-environment)
47 (charset . (greek-iso8859-7))
48 (coding-system . (greek-iso-8bit))
49 (sample-text . "Greek (\e,FGkk]mija\e(B) \e,FCei\\e(B \e,Fsar\e(B")
50 (documentation . t)))
51
52 ;;; greek.el ends here