Mercurial > emacs
annotate lisp/language/greek.el @ 18083:c361afa561c5
Include frame.h unconditionally.
(Fframe_face_alist, Fset_frame_face_alist): Define unconditionally.
(Finternal_next_face_id, next_face_id): Likewise.
(syms_of_xfaces): Define unconditionally,
but conditionalize some of the contents.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 01 Jun 1997 00:30:01 +0000 |
parents | 73869115ae0a |
children | 0745f30aec66 |
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 () | |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
40 "Setup multilingual environment (MULE) for Greek." |
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
41 (interactive) |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
42 (setup-8-bit-environment 'greek-iso8859-7 'iso-8859-7 |
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
43 '("Greek" . "quail-greek"))) |
17052 | 44 |
45 (set-language-info-alist | |
46 "Greek" '((setup-function . setup-greek-environment) | |
47 (charset . (greek-iso8859-7)) | |
17098
8917133b7e82
Remove prefix "coding-system-" from coding system symbol names.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
48 (coding-system . (iso-8859-7)) |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17098
diff
changeset
|
49 (sample-text . "Greek (,FGkk]mija(B) ,FCei\(B ,Fsar(B") |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
50 (documentation . t))) |
17052 | 51 |
52 ;;; greek.el ends here |