Fix up comment convention on the arch-tag lines.
[bpt/emacs.git] / lisp / language / greek.el
1 ;;; greek.el --- support for Greek -*- no-byte-compile: t -*-
2
3 ;; Copyright (C) 2002 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 ;; 2005, 2006, 2007, 2008
6 ;; National Institute of Advanced Industrial Science and Technology (AIST)
7 ;; Registration Number H14PRO021
8
9 ;; Copyright (C) 2003
10 ;; National Institute of Advanced Industrial Science and Technology (AIST)
11 ;; Registration Number H13PRO009
12
13 ;; Keywords: multilingual, Greek
14
15 ;; This file is part of GNU Emacs.
16
17 ;; GNU Emacs is free software; you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by
19 ;; the Free Software Foundation; either version 3, or (at your option)
20 ;; any later version.
21
22 ;; GNU Emacs is distributed in the hope that it will be useful,
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;; GNU General Public License for more details.
26
27 ;; You should have received a copy of the GNU General Public License
28 ;; along with GNU Emacs; see the file COPYING. If not, write to the
29 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
30 ;; Boston, MA 02110-1301, USA.
31
32 ;;; Commentary:
33
34 ;; For Greek, the character set ISO8859-7 is supported.
35
36 ;;; Code:
37
38 (define-coding-system 'greek-iso-8bit
39 "ISO 2022 based 8-bit encoding for Greek (MIME:ISO-8859-7)."
40 :coding-type 'charset
41 :mnemonic ?7
42 :charset-list '(iso-8859-7)
43 :mime-charset 'iso-8859-7)
44
45 (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit)
46
47 (define-coding-system 'windows-1253
48 "windows-1253 encoding for Greek"
49 :coding-type 'charset
50 :mnemonic ?g
51 :charset-list '(windows-1253)
52 :mime-charset 'windows-1253)
53 (define-coding-system-alias 'cp1253 'windows-1253)
54
55 (define-coding-system 'cp737
56 "Codepage 737 (PC Greek)"
57 :coding-type 'charset
58 :mnemonic ?D
59 :charset-list '(cp737)
60 :mime-charset 'cp737)
61
62 (define-coding-system 'cp851
63 "DOS codepage 851 (Greek)"
64 :coding-type 'charset
65 :mnemonic ?D
66 :charset-list '(cp851)
67 :mime-charset 'cp851)
68 (define-coding-system-alias 'ibm851 'cp851)
69
70 (define-coding-system 'cp869
71 "DOS codepage 869 (Greek)"
72 :coding-type 'charset
73 :mnemonic ?D
74 :charset-list '(cp869)
75 :mime-charset 'cp869)
76 (define-coding-system-alias 'ibm869 'cp869)
77
78 (set-language-info-alist
79 "Greek" '((charset iso-8859-7)
80 (coding-system greek-iso-8bit windows-1253 cp851 cp869)
81 (coding-priority greek-iso-8bit)
82 (nonascii-translation . iso-8859-7)
83 (input-method . "greek")
84 (documentation . t)))
85
86 (provide 'greek)
87
88 ;; arch-tag: 9ba48d79-84bc-45e1-9318-685dc3921410
89 ;;; greek.el ends here