annotate lisp/language/greek.el @ 89640:99303f55a1b8

(store_in_keymap): Pay attention to the case that idx is a cons specifying a character range.
author Kenichi Handa <handa@m17n.org>
date Sat, 22 Nov 2003 11:04:01 +0000
parents 2f877ed80fa6
children 68c22ea6027c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47726
33d53d287ee4 Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents: 42152
diff changeset
1 ;;; greek.el --- support for Greek -*- no-byte-compile: t -*-
17052
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
2
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89153
diff changeset
4 ;; Licensed to the Free Software Foundation.
88557
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
5 ;; Copyright (C) 2002 Free Software Foundation, Inc.
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89153
diff changeset
6 ;; Copyright (C) 2003
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89153
diff changeset
7 ;; National Institute of Advanced Industrial Science and Technology (AIST)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89153
diff changeset
8 ;; Registration Number H13PRO009
17052
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
9
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
10 ;; Keywords: multilingual, Greek
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
11
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
12 ;; This file is part of GNU Emacs.
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
13
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
15 ;; it under the terms of the GNU General Public License as published by
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
16 ;; the Free Software Foundation; either version 2, or (at your option)
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
17 ;; any later version.
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
18
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
19 ;; GNU Emacs is distributed in the hope that it will be useful,
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
22 ;; GNU General Public License for more details.
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
23
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
24 ;; You should have received a copy of the GNU General Public License
17071
70194012fb3a Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 17052
diff changeset
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
70194012fb3a Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 17052
diff changeset
26 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
70194012fb3a Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 17052
diff changeset
27 ;; Boston, MA 02111-1307, USA.
17052
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
28
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
29 ;;; Commentary:
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
30
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
31 ;; For Greek, the character set ISO8859-7 is supported.
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
32
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
33 ;;; Code:
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
34
88414
fad0f879877f Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents: 42152
diff changeset
35 (define-coding-system 'greek-iso-8bit
fad0f879877f Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents: 42152
diff changeset
36 "ISO 2022 based 8-bit encoding for Greek (MIME:ISO-8859-7)."
fad0f879877f Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents: 42152
diff changeset
37 :coding-type 'charset
fad0f879877f Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents: 42152
diff changeset
38 :mnemonic ?7
88479
b22b2b59667b (greek-iso-8bit): Fix typo.
Kenichi Handa <handa@m17n.org>
parents: 88414
diff changeset
39 :charset-list '(iso-8859-7)
88513
bafe04d82c5d Fix :mime-charset properties.
Dave Love <fx@gnu.org>
parents: 88479
diff changeset
40 :mime-charset 'iso-8859-7)
17052
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
41
18520
383d11185239 Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents: 18377
diff changeset
42 (define-coding-system-alias 'iso-8859-7 'greek-iso-8bit)
18203
0745f30aec66 Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents: 17993
diff changeset
43
88557
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
44 (define-coding-system 'windows-1253
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
45 "windows-1253 encoding for Greek"
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
46 :coding-type 'charset
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
47 :mnemonic ?g
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
48 :charset-list '(windows-1253)
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
49 :mime-charset 'windows-1253)
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
50 (define-coding-system-alias 'cp1253 'windows-1253)
601020f7bce8 (windows-1253, cp1253): New coding systems.
Dave Love <fx@gnu.org>
parents: 88513
diff changeset
51
89153
8e27ca682098 ("Greek"): Remove unibyte-syntax property.
Dave Love <fx@gnu.org>
parents: 88719
diff changeset
52 (define-coding-system 'cp737
8e27ca682098 ("Greek"): Remove unibyte-syntax property.
Dave Love <fx@gnu.org>
parents: 88719
diff changeset
53 "Codepage 737 (PC Greek)"
8e27ca682098 ("Greek"): Remove unibyte-syntax property.
Dave Love <fx@gnu.org>
parents: 88719
diff changeset
54 :coding-type 'charset
8e27ca682098 ("Greek"): Remove unibyte-syntax property.
Dave Love <fx@gnu.org>
parents: 88719
diff changeset
55 :mnemonic ?D
8e27ca682098 ("Greek"): Remove unibyte-syntax property.
Dave Love <fx@gnu.org>
parents: 88719
diff changeset
56 :charset-list '(cp737)
8e27ca682098 ("Greek"): Remove unibyte-syntax property.
Dave Love <fx@gnu.org>
parents: 88719
diff changeset
57 :mime-charset 'cp737)
8e27ca682098 ("Greek"): Remove unibyte-syntax property.
Dave Love <fx@gnu.org>
parents: 88719
diff changeset
58
88618
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
59 (define-coding-system 'cp851
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
60 "DOS codepage 851 (Greek)"
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
61 :coding-type 'charset
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
62 :mnemonic ?D
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
63 :charset-list '(cp851)
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
64 :mime-charset 'cp851)
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
65 (define-coding-system-alias 'ibm851 'cp851)
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
66
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
67 (define-coding-system 'cp869
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
68 "DOS codepage 869 (Greek)"
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
69 :coding-type 'charset
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
70 :mnemonic ?D
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
71 :charset-list '(cp869)
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
72 :mime-charset 'cp869)
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
73 (define-coding-system-alias 'ibm869 'cp869)
bc872894c0a7 (cp851, ibm851, cp869, ibm869): New coding
Dave Love <fx@gnu.org>
parents: 88557
diff changeset
74
17052
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
75 (set-language-info-alist
88414
fad0f879877f Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents: 42152
diff changeset
76 "Greek" '((charset iso-8859-7)
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89153
diff changeset
77 (coding-system greek-iso-8bit windows-1253 cp851 cp869)
22622
63c2279a26c4 Add coding-priority.
Kenichi Handa <handa@m17n.org>
parents: 20742
diff changeset
78 (coding-priority greek-iso-8bit)
88414
fad0f879877f Call define-coding-system instead of make-coding-system. All CCL program deleted.
Kenichi Handa <handa@m17n.org>
parents: 42152
diff changeset
79 (nonascii-translation . iso-8859-7)
22982
5fef9d1a7fc2 (setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents: 22622
diff changeset
80 (input-method . "greek")
17841
084d922fcd78 Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents: 17772
diff changeset
81 (documentation . t)))
17052
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
82
33778
6d966e8b4bbe Use provide.
Dave Love <fx@gnu.org>
parents: 28906
diff changeset
83 (provide 'greek)
6d966e8b4bbe Use provide.
Dave Love <fx@gnu.org>
parents: 28906
diff changeset
84
17052
d0d7b244b1d0 Initial revision
Karl Heuer <kwzh@gnu.org>
parents:
diff changeset
85 ;;; greek.el ends here