georgian.el 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ;;; georgian.el --- language support for Georgian -*- no-byte-compile: t -*-
  2. ;; Copyright (C) 2001-2012 Free Software Foundation, Inc.
  3. ;; Author: Dave Love <fx@gnu.org>
  4. ;; Keywords: i18n
  5. ;; This file is part of GNU Emacs.
  6. ;; GNU Emacs is free software: you can redistribute it and/or modify
  7. ;; it under the terms of the GNU General Public License as published by
  8. ;; the Free Software Foundation, either version 3 of the License, or
  9. ;; (at your option) any later version.
  10. ;; GNU Emacs is distributed in the hope that it will be useful,
  11. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ;; GNU General Public License for more details.
  14. ;; You should have received a copy of the GNU General Public License
  15. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  16. ;;; Commentary:
  17. ;;; Code:
  18. (define-coding-system 'georgian-ps
  19. "Georgian PS encoding"
  20. :coding-type 'charset
  21. :mnemonic ?G
  22. :charset-list '(georgian-ps))
  23. (define-coding-system 'georgian-academy
  24. "Georgian Academy encoding"
  25. :coding-type 'charset
  26. :mnemonic ?G
  27. :charset-list '(georgian-academy))
  28. (set-language-info-alist
  29. "Georgian" `((coding-system georgian-ps)
  30. (coding-priority georgian-ps)
  31. (input-method . "georgian")
  32. (nonascii-translation . georgian-ps)
  33. (documentation . "Support for georgian-ps character set."))
  34. '("European")) ; fixme: is this appropriate for
  35. ; a non-Latin script?
  36. (provide 'georgian)
  37. ;;; georgian.el ends here