; /usr/share/emacs/site-lisp/site-start.el ; customized for czech ; by UTX ;BEGIN prefixes ; (generated by prefixes(8) on Ne pro 2 15:25:02 CET 2001) ;END prefixes ; hook for linux source (defun linux-c-mode () "C mode with adjusted defaults for use with the Linux kernel." (interactive) (c-mode) (c-set-style "K&R") (setq c-basic-offset 8)) (setq auto-mode-alist (cons '("/usr/src/linux.*/.*\\.[ch]$" . linux-c-mode) auto-mode-alist)) (setq load-path (cons "/usr/share/emacs/site-lisp/czech" load-path)) (setq load-path (cons "/usr/share/emacs/site-lisp/utx" load-path)) (set-clipboard-coding-system 'latin-2) (require 'czech-calendar) (require 'upages-mode) ;BEGIN gettext ; (edited by addstring(1)) (setq auto-mode-alist (cons (cons "\\.po[tx]?\\'\\|\\.po\\." 'po-mode) auto-mode-alist)) (autoload 'po-mode "po-mode") ;END gettext ;LAST addstring ; (added by addstring(1))