blob: a028b89d6801e789b226b6e1196cca6d94055068 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;;; po-mode site-lisp configuration
(add-to-list 'load-path "@SITELISP@")
(autoload 'po-mode "po-mode" "Major mode for translators to edit PO files" t)
(or (fboundp 'po-find-file-coding-system)
(autoload 'po-find-file-coding-system "po-compat"))
(add-to-list 'auto-mode-alist '("\\.po\\'\\|\\.po\\." . po-mode))
(modify-coding-system-alist 'file "\\.po\\'\\|\\.po\\."
'po-find-file-coding-system)
|