c5659ca2ae
- include preloadable_libintl.so again (Roozbeh Pournader, #149809) - remove .la files (Kjartan Maraas, #172624) - cleanup spec file
12 lines
362 B
EmacsLisp
12 lines
362 B
EmacsLisp
;;; po-mode-init.el
|
|
|
|
(autoload 'po-mode "po-mode")
|
|
(setq auto-mode-alist (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
|
|
auto-mode-alist))
|
|
|
|
;; autodetect coding-system
|
|
(autoload 'po-find-file-coding-system "po-mode")
|
|
(modify-coding-system-alist 'file "\\.po[tx]?\\'\\|\\.po\\."
|
|
'po-find-file-coding-system)
|
|
|