Mercurial > emacs
view lisp/language/czech.el @ 21243:e82a4a4fa12a
(comint-preoutput-filter-functions): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 21 Mar 1998 06:16:35 +0000 |
parents | 889e8341a01d |
children | d51476961314 |
line wrap: on
line source
;;; 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