diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-02-20 07:02:49 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-02-20 07:02:49 +0000 |
commit | 29ce3607c99f8b6f8c8971ab2768175f3674fcb9 (patch) | |
tree | bd6fe5058bf419dd8d69bdc2c13ffbe9c4abfdb8 /lisp/language/greek.el | |
parent | d58e6703b3d19cdda2b640b6784ab17b8048cb51 (diff) | |
download | emacs-29ce3607c99f8b6f8c8971ab2768175f3674fcb9.tar.gz |
Initial revision
Diffstat (limited to 'lisp/language/greek.el')
-rw-r--r-- | lisp/language/greek.el | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/lisp/language/greek.el b/lisp/language/greek.el new file mode 100644 index 00000000000..114dc5b7fdc --- /dev/null +++ b/lisp/language/greek.el @@ -0,0 +1,59 @@ +;;; greek.el --- Support for Greek + +;; Copyright (C) 1995 Free Software Foundation, Inc. +;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. + +;; Keywords: multilingual, Greek + +;; 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 +;; along with GNU Emacs; see the file COPYING. If not, write to +;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +;;; Commentary: + +;; For Greek, the character set ISO8859-7 is supported. + +;;; Code: + +(make-coding-system + 'coding-system-iso-8859-7 2 ?7 "MIME ISO-8859-7" + '((ascii t) (greek-iso8859-7 t) nil nil + nil ascii-eol ascii-cntl nil nil nil nil)) + +(register-input-method + "Greek" '("quail-greek" quail-use-package "quail/greek")) + +(defun setup-greek-environment () + (setq coding-category-iso-8-1 'coding-system-iso-8859-7) + + (set-coding-priority + '(coding-category-iso-7 + coding-category-iso-8-1)) + + (setq-default buffer-file-coding-system 'coding-system-iso-8859-7) + (set-terminal-coding-system 'coding-system-iso-8859-7) + (set-keyboard-coding-system 'coding-system-iso-8859-7) + + (setq default-input-method '("Greek" . "quail-greek")) + ) + +(set-language-info-alist + "Greek" '((setup-function . setup-greek-environment) + (charset . (greek-iso8859-7)) + (coding-system . (coding-system-iso-8859-7)) + (documentation . t) + (sample-text . "Greek (,FGkk]mija(B) ,FCei\(B ,Fsar(B"))) + +;;; greek.el ends here |