annotate lisp/language/georgian.el @ 94952:09277c117521

("Chinese-GB", "Chinese-BIG5") ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK") ("Chinese-GB18030"): Set `iso639-language' property to `zh'.
author Kenichi Handa <handa@m17n.org>
date Wed, 14 May 2008 01:54:39 +0000
parents 55b7f25d920a
children a9dc0e7c3f2b
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: 46673
diff changeset
1 ;;; georgian.el --- language support for Georgian -*- no-byte-compile: t -*-
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
2
79711
b5d3fc1c4afe Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 78236
diff changeset
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
74544
43cc94d955c2 Update copyright years.
Glenn Morris <rgm@gnu.org>
parents: 64085
diff changeset
4 ;; Free Software Foundation, Inc.
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
5
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
6 ;; Author: Dave Love <fx@gnu.org>
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
7 ;; Keywords: i18n
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
8
42320
44b4a14ae7fc Fix Lisp headers.
Pavel Janík <Pavel@Janik.cz>
parents: 42057
diff changeset
9 ;; This file is part of GNU Emacs.
44b4a14ae7fc Fix Lisp headers.
Pavel Janík <Pavel@Janik.cz>
parents: 42057
diff changeset
10
94665
55b7f25d920a Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
94665
55b7f25d920a Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
13 ;; the Free Software Foundation, either version 3 of the License, or
55b7f25d920a Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
14 ;; (at your option) any later version.
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
15
45357
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
20
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
94665
55b7f25d920a Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
23
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
24 ;;; Commentary:
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
25
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
26 ;;; Code:
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
27
89391
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
28 (define-coding-system 'georgian-ps
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
29 "Georgian PS encoding"
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
30 :coding-type 'charset
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
31 :mnemonic ?G
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
32 :charset-list '(georgian-ps))
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
33
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
34 (define-coding-system 'georgian-academy
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
35 "Georgian Academy encoding"
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
36 :coding-type 'charset
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
37 :mnemonic ?G
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
38 :charset-list '(georgian-academy))
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
39
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
40 (set-language-info-alist
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
41 "Georgian" `((coding-system georgian-ps)
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
42 (coding-priority georgian-ps)
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
43 (input-method . "georgian")
88807
15a8da83223b ("Georgian"): Delete code-pages feature,
Dave Love <fx@gnu.org>
parents: 42320
diff changeset
44 (nonascii-translation . georgian-ps)
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
45 (documentation . "Support for georgian-ps character set."))
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
46 '("European")) ; fixme: is this appropriate for
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
47 ; a non-Latin script?
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
48
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
49 (provide 'georgian)
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
50
93975
1e3a407766b9 Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 91327
diff changeset
51 ;; arch-tag: 15499fbb-26d4-4a13-9d78-135eef7d32f5
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
52 ;;; georgian.el ends here