1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-30 00:51:50 -08:00
emacs/lisp/language/czech.el
Richard M. Stallman 7642591621 (setup-czech-environment): 3rd arg to setup-8-bit-environment is the
default input method, not coding system.
1998-03-17 22:52:37 +00:00

33 lines
843 B
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; czech.el -- support for Czech
;; Copyright (C) 1998 Free Software Foundation.
;; Author: Milan Zamazal <pdm@fi.muni.cz>
;; Maintainer: Milan Zamazal <pdm@fi.muni.cz>
;; Keywords: multilingual, Czech
;; Copying and warranty: GNU General Public License, version 2
;;; Commentary:
;; Czech ISO 8859-2 environment.
;;; Code:
(defun setup-czech-environment ()
"Setup multilingual environment (MULE) for Czech."
(interactive)
(setup-8-bit-environment "Czech" 'latin-iso8859-2 "czech")
(load "latin-2"))
(set-language-info-alist
"Czech" '((setup-function . setup-czech-environment)
(charset . (ascii latin-iso8859-2))
(coding-system . (iso-8859-2))
(tutorial . "TUTORIAL.cz")
(sample-text . "P,Bx(Bejeme v,Ba(Bm hezk,Bi(B r,Ba(Bno!")
(documentation . t)))
(provide 'czech)
;; czech.el ends here