47726
|
1 ;;; slovak.el --- support for Slovak -*- coding: iso-2022-7bit; no-byte-compile: t -*-
|
21196
|
2
|
37160
|
3 ;; Copyright (C) 1998, 2001 Free Software Foundation.
|
21196
|
4
|
|
5 ;; Authors: Tibor ,B)(Bimko <tibor.simko@fmph.uniba.sk>,
|
37768
|
6 ;; Milan Zamazal <pdm@zamazal.org>
|
|
7 ;; Maintainer: Pavel Jan,Am(Bk <Pavel@Janik.cz>
|
21196
|
8 ;; Keywords: multilingual, Slovak
|
|
9
|
21421
|
10 ;; This file is part of GNU Emacs.
|
|
11
|
|
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
13 ;; it under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
20 ;; GNU General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
25 ;; Boston, MA 02111-1307, USA.
|
21196
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;; Slovak ISO 8859-2 environment.
|
|
30
|
|
31 ;;; Code:
|
|
32
|
|
33 (set-language-info-alist
|
22982
|
34 "Slovak" '((charset . (ascii latin-iso8859-2))
|
21421
|
35 (coding-system . (iso-8859-2))
|
|
36 (coding-priority . (iso-8859-2))
|
22982
|
37 (nonascii-translation . latin-iso8859-2)
|
|
38 (input-method . "slovak")
|
|
39 (unibyte-syntax . "latin-2")
|
|
40 (unibyte-display . iso-8859-2)
|
37379
|
41 (tutorial . "TUTORIAL.sk")
|
21196
|
42 (sample-text . "Prajeme V,Ba(Bm pr,Bm(Bjemn,B}(B de,Br(B!")
|
37160
|
43 (documentation . "\
|
|
44 This language environment is almost the same as Latin-2,
|
43742
|
45 but sets the default input method to \"slovak\",
|
42194
|
46 and selects the Slovak tutorial."))
|
21472
|
47 '("European"))
|
21196
|
48
|
|
49 (provide 'slovak)
|
|
50
|
38414
|
51 ;;; slovak.el ends here
|