c0806599d0
Thu Dec 06 2001 Trond Eivind Glomsrød <teg@redhat.com> 21.1-2.7 - Increase recursive-load-depth-limit from 10 to 50 Wed Dec 05 2001 Trond Eivind Glomsrød <teg@redhat.com> 21.1-2 - Make it conflict with old versions of gettext Thu Nov 29 2001 Trond Eivind Glomsrød <teg@redhat.com> 21.1-1 - rpm-spec-mode 0.11h, should fix #56748 Tue Nov 06 2001 Trond Eivind Glomsrød <teg@redhat.com> 21.1-0.4 - php mode 1.0.1. Should fix some speedbar problems. Tue Oct 23 2001 Trond Eivind Glomsrød <teg@redhat.com> 21.1-0.3 - Minor cleanups - add ssl.el Mon Oct 22 2001 Trond Eivind Glomsrød <teg@redhat.com> 21.1-0.2 - Add more files from the libexec directory (#54874, #54875) Sun Oct 21 2001 Trond Eivind Glomsrød <teg@redhat.com> 21.1-0.1 - 21.1 - Build on IA64 again - the default config now handles it - Drop all old patches - Misc cleanups - Update the elisp manual to 21-2.7 - Deprecate the emacs-nox and emacs-X11 subpackages. Simplify build procedure to match. - Update php-mode to 1.0.0 Mon Oct 15 2001 Trond Eivind Glomsrød <teg@redhat.com> 20.7-43 - Add php-mode 0.9.9 - Add URL (#54603) - don't run autoconf/libtoolize during build - they're broken - don't build on IA64 until they are fixed Sun Sep 16 2001 Trond Eivind Glomsrød <teg@redhat.com> 20.7-42 - Update python-mode to the version in the python 2.2a3 - Include po-mode in emacs, instead of including in gettext
13 lines
416 B
EmacsLisp
13 lines
416 B
EmacsLisp
;; Use po-mode for translation files
|
|
|
|
(autoload 'po-mode "po-mode")
|
|
(setq auto-mode-alist (cons '("\\.po[tx]?\\'\\|\\.po\\." . po-mode)
|
|
auto-mode-alist))
|
|
|
|
;;; To automatically use proper fonts under Emacs 20, also add:
|
|
|
|
(autoload 'po-find-file-coding-system "po-mode")
|
|
(modify-coding-system-alist 'file "\\.po[tx]?\\'\\|\\.po\\."
|
|
'po-find-file-coding-system)
|
|
|