2002-10-01 17:06:54 +00:00
|
|
|
|
;;; slovak.el --- support for Slovak -*- coding: iso-2022-7bit; no-byte-compile: t -*-
|
1998-03-17 05:49:29 +00:00
|
|
|
|
|
2008-01-07 01:33:37 +00:00
|
|
|
|
;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
2006-12-10 00:31:06 +00:00
|
|
|
|
;; Free Software Foundation.
|
1998-03-17 05:49:29 +00:00
|
|
|
|
|
|
|
|
|
;; Authors: Tibor ,B)(Bimko <tibor.simko@fmph.uniba.sk>,
|
2001-05-17 09:54:45 +00:00
|
|
|
|
;; Milan Zamazal <pdm@zamazal.org>
|
|
|
|
|
;; Maintainer: Pavel Jan,Am(Bk <Pavel@Janik.cz>
|
1998-03-17 05:49:29 +00:00
|
|
|
|
;; Keywords: multilingual, Slovak
|
|
|
|
|
|
1998-04-08 07:03:51 +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
|
1998-04-08 07:03:51 +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.
|
1998-04-08 07:03:51 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; 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/>.
|
1998-03-17 05:49:29 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Slovak ISO 8859-2 environment.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(set-language-info-alist
|
1998-08-10 06:29:02 +00:00
|
|
|
|
"Slovak" '((charset . (ascii latin-iso8859-2))
|
1998-04-08 07:03:51 +00:00
|
|
|
|
(coding-system . (iso-8859-2))
|
|
|
|
|
(coding-priority . (iso-8859-2))
|
2002-03-05 01:06:51 +00:00
|
|
|
|
(nonascii-translation . iso-8859-2)
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(input-method . "slovak")
|
|
|
|
|
(unibyte-display . iso-8859-2)
|
2001-04-18 14:02:58 +00:00
|
|
|
|
(tutorial . "TUTORIAL.sk")
|
1998-03-17 05:49:29 +00:00
|
|
|
|
(sample-text . "Prajeme V,Ba(Bm pr,Bm(Bjemn,B}(B de,Br(B!")
|
2001-04-03 13:10:43 +00:00
|
|
|
|
(documentation . "\
|
|
|
|
|
This language environment is almost the same as Latin-2,
|
2002-03-06 11:03:56 +00:00
|
|
|
|
but sets the default input method to \"slovak\",
|
2001-12-19 22:00:17 +00:00
|
|
|
|
and selects the Slovak tutorial."))
|
1998-04-11 02:19:18 +00:00
|
|
|
|
'("European"))
|
1998-03-17 05:49:29 +00:00
|
|
|
|
|
|
|
|
|
(provide 'slovak)
|
|
|
|
|
|
2008-04-10 14:10:46 +00:00
|
|
|
|
;; arch-tag: 1bae098a-33b2-4426-8c29-59e44fe05484
|
2001-07-15 19:53:53 +00:00
|
|
|
|
;;; slovak.el ends here
|