Mercurial > emacs
annotate lisp/language/greek.el @ 17692:426dde653028 gnumach-release-1-1 gnumach-release-1-1-1 libc-970508 libc-970509 libc-970510 libc-970511 libc-970512 libc-970513 libc-970514 libc-970515 libc-970516 libc-970517 libc-970518 libc-970519 libc-970520 libc-970521 libc-970522 libc-970523 libc-970524 libc-970525 libc-970526 libc-970527 libc-970528 libc-970529 libc-970530 libc-970531 libc-970601 libc-970602 libc-970603 libc-970604 libc-970605
Recognize either / or - as a machine/suptype separator from uname -m
to cope with older systems that have the older uname.
author | Thomas Bushnell, BSG <thomas@gnu.org> |
---|---|
date | Wed, 07 May 1997 19:19:04 +0000 |
parents | 8917133b7e82 |
children | 550afdbb31d8 |
rev | line source |
---|---|
17052 | 1 ;;; greek.el --- Support for Greek |
2 | |
3 ;; Copyright (C) 1995 Free Software Foundation, Inc. | |
4 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
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 | |
17071 | 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. | |
17052 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; For Greek, the character set ISO8859-7 is supported. | |
28 | |
29 ;;; Code: | |
30 | |
31 (make-coding-system | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
32 'iso-8859-7 2 ?7 "MIME ISO-8859-7" |
17052 | 33 '((ascii t) (greek-iso8859-7 t) nil nil |
34 nil ascii-eol ascii-cntl nil nil nil nil)) | |
35 | |
36 (register-input-method | |
37 "Greek" '("quail-greek" quail-use-package "quail/greek")) | |
38 | |
39 (defun setup-greek-environment () | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
40 (setq coding-category-iso-8-1 'iso-8859-7) |
17052 | 41 |
42 (set-coding-priority | |
43 '(coding-category-iso-7 | |
44 coding-category-iso-8-1)) | |
45 | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
46 (setq-default buffer-file-coding-system 'iso-8859-7) |
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
47 (set-terminal-coding-system 'iso-8859-7) |
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
48 (set-keyboard-coding-system 'iso-8859-7) |
17052 | 49 |
50 (setq default-input-method '("Greek" . "quail-greek")) | |
51 ) | |
52 | |
53 (set-language-info-alist | |
54 "Greek" '((setup-function . setup-greek-environment) | |
55 (charset . (greek-iso8859-7)) | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
56 (coding-system . (iso-8859-7)) |
17052 | 57 (documentation . t) |
58 (sample-text . "Greek (,FGkk]mija(B) ,FCei\(B ,Fsar(B"))) | |
59 | |
60 ;;; greek.el ends here |