2006-08-07 08:02:10 +00:00
|
|
|
;;; po-mode-init.el
|
2004-09-09 05:03:51 +00:00
|
|
|
|
|
|
|
(autoload 'po-mode "po-mode")
|
|
|
|
(setq auto-mode-alist (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
|
|
|
|
auto-mode-alist))
|
|
|
|
|
2006-08-07 08:02:10 +00:00
|
|
|
;; autodetect coding-system
|
2004-09-09 05:03:51 +00:00
|
|
|
(autoload 'po-find-file-coding-system "po-mode")
|
|
|
|
(modify-coding-system-alist 'file "\\.po[tx]?\\'\\|\\.po\\."
|
|
|
|
'po-find-file-coding-system)
|
|
|
|
|