2002-10-01 17:06:54 +00:00
|
|
|
;;; georgian.el --- language support for Georgian -*- no-byte-compile: t -*-
|
2001-12-15 18:01:15 +00:00
|
|
|
|
2009-01-05 03:18:22 +00:00
|
|
|
;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
|
2006-12-10 00:31:06 +00:00
|
|
|
;; Free Software Foundation, Inc.
|
2001-12-15 18:01:15 +00:00
|
|
|
|
|
|
|
;; Author: Dave Love <fx@gnu.org>
|
|
|
|
;; Keywords: i18n
|
|
|
|
|
2001-12-25 11:10:03 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 04:29:13 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2001-12-15 18:01:15 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:29:13 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2001-12-15 18:01:15 +00:00
|
|
|
|
2002-05-19 01:38:37 +00:00
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2001-12-15 18:01:15 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 04:29:13 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2001-12-15 18:01:15 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2003-02-12 18:47:23 +00:00
|
|
|
(define-coding-system 'georgian-ps
|
|
|
|
"Georgian PS encoding"
|
|
|
|
:coding-type 'charset
|
|
|
|
:mnemonic ?G
|
|
|
|
:charset-list '(georgian-ps))
|
|
|
|
|
|
|
|
(define-coding-system 'georgian-academy
|
|
|
|
"Georgian Academy encoding"
|
|
|
|
:coding-type 'charset
|
|
|
|
:mnemonic ?G
|
|
|
|
:charset-list '(georgian-academy))
|
|
|
|
|
2001-12-15 18:01:15 +00:00
|
|
|
(set-language-info-alist
|
|
|
|
"Georgian" `((coding-system georgian-ps)
|
|
|
|
(coding-priority georgian-ps)
|
|
|
|
(input-method . "georgian")
|
2002-06-27 21:55:53 +00:00
|
|
|
(nonascii-translation . georgian-ps)
|
2001-12-15 18:01:15 +00:00
|
|
|
(documentation . "Support for georgian-ps character set."))
|
|
|
|
'("European")) ; fixme: is this appropriate for
|
|
|
|
; a non-Latin script?
|
|
|
|
|
|
|
|
(provide 'georgian)
|
|
|
|
|
2008-04-10 14:10:46 +00:00
|
|
|
;; arch-tag: 15499fbb-26d4-4a13-9d78-135eef7d32f5
|
2001-12-15 18:01:15 +00:00
|
|
|
;;; georgian.el ends here
|