Use UTC timestamps in rpm-spec-mode changelog entries by default; Consider *.elc in addition to *.el when loading files from site-start.d
This commit is contained in:
parent
06191dca96
commit
b50677584e
@ -3,7 +3,7 @@ Summary: GNU Emacs text editor
|
|||||||
Name: emacs
|
Name: emacs
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 23.3
|
Version: 23.3
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: http://www.gnu.org/software/emacs/
|
URL: http://www.gnu.org/software/emacs/
|
||||||
Group: Applications/Editors
|
Group: Applications/Editors
|
||||||
@ -434,6 +434,10 @@ update-desktop-database &> /dev/null || :
|
|||||||
%dir %{_datadir}/emacs/site-lisp/site-start.d
|
%dir %{_datadir}/emacs/site-lisp/site-start.d
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Mar 15 2011 Ville Skyttä <ville.skytta@iki.fi> - 1:23.3-3
|
||||||
|
- Use UTC timestamps in rpm-spec-mode changelog entries by default (rhbz#672350)
|
||||||
|
- Consider *.elc in addition to *.el when loading files from site-start.d (rhbz#672324)
|
||||||
|
|
||||||
* Tue Mar 15 2011 Karel Klic <kklic@redhat.com> - 1:23.3-2
|
* Tue Mar 15 2011 Karel Klic <kklic@redhat.com> - 1:23.3-2
|
||||||
- Another attempt to fix the handling of alternatives (rhbz#684447)
|
- Another attempt to fix the handling of alternatives (rhbz#684447)
|
||||||
The current process loses alternatives preference on every upgrade,
|
The current process loses alternatives preference on every upgrade,
|
||||||
|
@ -2,3 +2,4 @@
|
|||||||
|
|
||||||
(autoload 'rpm-spec-mode "rpm-spec-mode" "RPM spec mode." t)
|
(autoload 'rpm-spec-mode "rpm-spec-mode" "RPM spec mode." t)
|
||||||
(add-to-list 'auto-mode-alist '("\\.spec\\(\\.in\\)?$" . rpm-spec-mode))
|
(add-to-list 'auto-mode-alist '("\\.spec\\(\\.in\\)?$" . rpm-spec-mode))
|
||||||
|
(setq-default rpm-change-log-uses-utc t)
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
;;; loaded before user's ".emacs" file and default.el
|
;;; loaded before user's ".emacs" file and default.el
|
||||||
|
|
||||||
;; load ".el" files in "/usr/share/emacs/site-lisp/site-start.d/" on startup
|
;; load *.el and *.elc in /usr/share/emacs/site-lisp/site-start.d on startup
|
||||||
(mapc 'load
|
(mapc
|
||||||
(directory-files "/usr/share/emacs/site-lisp/site-start.d" t "\\.el\\'"))
|
'load
|
||||||
|
(delete-dups
|
||||||
|
(mapcar 'file-name-sans-extension
|
||||||
|
(directory-files
|
||||||
|
"/usr/share/emacs/site-lisp/site-start.d" t "\\.elc?\\'"))))
|
||||||
|
Loading…
Reference in New Issue
Block a user