annotate lisp/language/georgian.el @ 112447:bcecab2ad22d

* nsterm.m (x_set_offset): Set dont_constrain to 0 so the call to setFrameTopLeftPoint is constrained.
author Jan D. <jan.h.d@swipnet.se>
date Sun, 23 Jan 2011 14:28:14 +0100
parents ef719132ddfa
children
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
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
45cfc4479aca *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
51 ;;; georgian.el ends here