comparison lisp/language/cyril-util.el @ 17995:edf6798cb51b

Initial revision
author Kenichi Handa <handa@m17n.org>
date Wed, 28 May 1997 03:41:18 +0000
parents
children 0745f30aec66
comparison
equal deleted inserted replaced
17994:28d45a11ac18 17995:edf6798cb51b
1 ;;; cyril-util.el --- utilities for Cyrillic scripts
2
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
4 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
5
6 ;; Keywords: mule, multilingual, Cyrillic
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 ;;;###autoload
28 (defun setup-cyrillic-iso-environment ()
29 "Setup multilingual environment for Cyrillic (ISO-8859-5) users."
30 (interactive)
31 (setup-8-bit-environment 'cyrillic-iso8859-5 'iso-8859-5
32 '("Cyrillic" . "quail-yawerty"))
33
34 (setq primary-language "Cyrillic"))
35
36 ;;;###autoload
37 (defun setup-cyrillic-koi8-environment ()
38 "Setup multilingual environment for Cyrillic (KOI8-R) users."
39 (interactive)
40 (setup-8-bit-environment 'cyrillic-iso8859-5 'koi8-r
41 '("Cyrillic" . "quail-yawerty"))
42
43 (setq primary-language "Cyrillic"))
44
45 ;;;###autoload
46 (defun setup-cyrillic-alternativnyj-environment ()
47 "Setup multilingual environment for Cyrillic (ALTERNATIVNYJ) users."
48 (interactive)
49 (setup-8-bit-environment 'cyrillic-iso8859-5 'alternativnyj
50 '("Cyrillic" . "quail-yawerty"))
51
52 (setq primary-language "Cyrillic"))
53
54 ;;
55 (provide 'language/cyril-util)
56
57 ;;; Local Variables:
58 ;;; generated-autoload-file: "../loaddefs.el"
59 ;;; End:
60 ;;; cyril-util.el ends here