Hello community, here is the log from the commit of package emacs for openSUSE:Factory checked in at Thu Nov 18 16:14:48 CET 2010. -------- --- emacs/emacs.changes 2010-10-19 10:08:07.000000000 +0200 +++ emacs/emacs.changes 2010-11-18 11:12:26.000000000 +0100 @@ -1,0 +2,8 @@ +Thu Nov 18 11:10:16 CET 2010 - werner@suse.de + +- Support foreign emacs extensions to scanning + /usr/share/emacs/site-lisp/site-start.d/ + /etc/emacs/site-lisp/site-start.d/ + for emacs lisp files suggested by Holger Arnold (bnc#653798) + +------------------------------------------------------------------- calling whatdependson for head-i586 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ emacs.spec ++++++ --- /var/tmp/diff_new_pack.O7R1G0/_old 2010-11-18 16:14:21.000000000 +0100 +++ /var/tmp/diff_new_pack.O7R1G0/_new 2010-11-18 16:14:21.000000000 +0100 @@ -30,7 +30,7 @@ License: GPLv2+ Group: Productivity/Editors/Emacs Version: 23.2 -Release: 1 +Release: 2 Obsoletes: ge_exec ge_site emac_nox emacmisc emacsbin emacsger emacs-url Mule-UCS emacs-calc erc Requires: emacs-info = %{version} Requires: emacs_program = %{version}-%{release} ++++++ site-lisp.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/site-lisp/site-start.el new/site-lisp/site-start.el --- old/site-lisp/site-start.el 2007-05-22 12:53:43.000000000 +0200 +++ new/site-lisp/site-start.el 2010-11-18 11:07:01.000000000 +0100 @@ -74,7 +74,13 @@ ;; Load some package startups ;; -------------------------- (let ((dir (directory-files "/usr/share/emacs/site-lisp/" t "^suse-start-.*\\.el$"))) - (while dir (load (car dir) nil t t) (setq dir (cdr dir)))) + (while dir (load (car dir) nil t t) (setq dir (cdr dir)))) +(if (file-accessible-directory-p "/usr/share/emacs/site-lisp/site-start.d") + (let ((dir (directory-files "/usr/share/emacs/site-lisp/site-start.d/" t "^[^/]*\\.el$"))) + (while dir (load (car dir) nil t t) (setq dir (cdr dir))))) +(if (file-accessible-directory-p "/etc/emacs/site-lisp/site-start.d") + (let ((dir (directory-files "/etc/emacs/site-lisp/site-start.d/" t "^[^/]*\\.el$"))) + (while dir (load (car dir) nil t t) (setq dir (cdr dir))))) ;; ;; One step scrolling ;; ------------------ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de