annotate lisp/language/georgian.el @ 89633:40b05b530518

(update_compositions): Bind inhibit-read-only, etc to t before calling remove-list-of-text-properties.
author Kenichi Handa <handa@m17n.org>
date Tue, 18 Nov 2003 06:29:24 +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: 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
89391
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
3 ;; Copyright (C) 2001, 2003 Free Software Foundation, Inc.
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
4
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
5 ;; Author: Dave Love <fx@gnu.org>
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
6 ;; Keywords: i18n
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
7
42320
44b4a14ae7fc Fix Lisp headers.
Pavel Janík <Pavel@Janik.cz>
parents: 42057
diff changeset
8 ;; This file is part of GNU Emacs.
44b4a14ae7fc Fix Lisp headers.
Pavel Janík <Pavel@Janik.cz>
parents: 42057
diff changeset
9
45357
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
10 ;; 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
11 ;; it under the terms of the GNU General Public License as published by
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
13 ;; any later version.
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
14
45357
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
15 ;; 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
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
18 ;; GNU General Public License for more details.
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
19
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
45357
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
23 ;; Boston, MA 02111-1307, USA.
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
24
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
25 ;;; Commentary:
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
26
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
27 ;;; Code:
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
28
89391
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
29 (define-coding-system 'georgian-ps
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
30 "Georgian PS encoding"
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
31 :coding-type 'charset
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
32 :mnemonic ?G
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
33 :charset-list '(georgian-ps))
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
34
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
35 (define-coding-system 'georgian-academy
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
36 "Georgian Academy encoding"
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
37 :coding-type 'charset
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
38 :mnemonic ?G
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
39 :charset-list '(georgian-academy))
f33adafd7c55 (georgian-ps, georgian-academy): New coding
Dave Love <fx@gnu.org>
parents: 88807
diff changeset
40
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
41 (set-language-info-alist
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
42 "Georgian" `((coding-system georgian-ps)
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
43 (coding-priority georgian-ps)
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
44 (input-method . "georgian")
88807
15a8da83223b ("Georgian"): Delete code-pages feature,
Dave Love <fx@gnu.org>
parents: 42320
diff changeset
45 (nonascii-translation . georgian-ps)
42057
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
46 (documentation . "Support for georgian-ps character set."))
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
47 '("European")) ; fixme: is this appropriate for
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
48 ; a non-Latin script?
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
49
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
50 (provide 'georgian)
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
51
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
52 ;;; georgian.el ends here