# HG changeset patch # User Juanma Barranquero # Date 1257294454 0 # Node ID a2094e76667e65f9bc40a0ca021d339341ba68e7 # Parent 4e4705fae3d0137975e3c24b38943a60c85c29eb * calendar/calendar.el (cal-loaddefs): * calendar/diary-lib.el (diary-loaddefs): * calendar/holidays.el (hol-loaddefs): * eshell/esh-module.el (esh-groups): * mh/mh-e.el (mh-loaddefs): Load rather than require. diff -r 4e4705fae3d0 -r a2094e76667e lisp/ChangeLog --- a/lisp/ChangeLog Tue Nov 03 22:24:34 2009 +0000 +++ b/lisp/ChangeLog Wed Nov 04 00:27:34 2009 +0000 @@ -1,3 +1,10 @@ +2009-11-04 Juanma Barranquero + + * calendar/calendar.el (cal-loaddefs): + * calendar/diary-lib.el (diary-loaddefs): + * calendar/holidays.el (hol-loaddefs): + * eshell/esh-module.el (esh-groups): Load rather than require. + 2009-11-03 Stefan Monnier * calendar/todo-mode.el (todo-add-category): Don't hardcode point-min==1. diff -r 4e4705fae3d0 -r a2094e76667e lisp/calendar/calendar.el --- a/lisp/calendar/calendar.el Tue Nov 03 22:24:34 2009 +0000 +++ b/lisp/calendar/calendar.el Wed Nov 04 00:27:34 2009 +0000 @@ -114,7 +114,7 @@ ;;; Code: -(require 'cal-loaddefs) +(load "cal-loaddefs" nil 'nomessage) ;; Avoid recursive load of calendar when loading cal-menu. Yuck. (provide 'calendar) diff -r 4e4705fae3d0 -r a2094e76667e lisp/calendar/diary-lib.el --- a/lisp/calendar/diary-lib.el Tue Nov 03 22:24:34 2009 +0000 +++ b/lisp/calendar/diary-lib.el Wed Nov 04 00:27:34 2009 +0000 @@ -29,7 +29,7 @@ ;;; Code: (require 'calendar) -(require 'diary-loaddefs) +(load "diary-loaddefs" nil 'nomessage) (defgroup diary nil "Emacs diary." diff -r 4e4705fae3d0 -r a2094e76667e lisp/calendar/holidays.el --- a/lisp/calendar/holidays.el Tue Nov 03 22:24:34 2009 +0000 +++ b/lisp/calendar/holidays.el Wed Nov 04 00:27:34 2009 +0000 @@ -29,7 +29,7 @@ ;;; Code: (require 'calendar) -(require 'hol-loaddefs) +(load "hol-loaddefs" nil 'nomessage) (defgroup holidays nil "Holidays support in calendar." diff -r 4e4705fae3d0 -r a2094e76667e lisp/eshell/esh-module.el --- a/lisp/eshell/esh-module.el Tue Nov 03 22:24:34 2009 +0000 +++ b/lisp/eshell/esh-module.el Wed Nov 04 00:27:34 2009 +0000 @@ -38,7 +38,7 @@ ;; load the defgroup's for the standard extension modules, so that ;; documentation can be provided when the user customize's ;; `eshell-modules-list'. -(require 'esh-groups) +(load "esh-groups" nil 'nomessage) ;;; User Variables: diff -r 4e4705fae3d0 -r a2094e76667e lisp/mh-e/ChangeLog --- a/lisp/mh-e/ChangeLog Tue Nov 03 22:24:34 2009 +0000 +++ b/lisp/mh-e/ChangeLog Wed Nov 04 00:27:34 2009 +0000 @@ -1,3 +1,7 @@ +2009-11-04 Juanma Barranquero + + * mh-e.el (mh-loaddefs): Load rather than require. + 2009-10-06 Glenn Morris * mh-show.el (mh-show-msg): Use window-full-height-p. @@ -40,7 +44,7 @@ * mh-seq.el (mh-parse-flist-output-line): Return list rather than values. We want to avoid emacs using m-v facilities. - (mh-folder-size-folder): Ditto. + (mh-folder-size-folder): Ditto. (mh-parse-flist-output-line): Ditto. * mh-thread.el (mh-thread-prune-subject): Ditto. * mh-xface.el (mh-picon-get-image): Ditto. diff -r 4e4705fae3d0 -r a2094e76667e lisp/mh-e/mh-e.el --- a/lisp/mh-e/mh-e.el Tue Nov 03 22:24:34 2009 +0000 +++ b/lisp/mh-e/mh-e.el Wed Nov 04 00:27:34 2009 +0000 @@ -92,7 +92,7 @@ ;; Provide functions to the rest of MH-E. However, mh-e.el must not ;; use any definitions in files that require mh-e from mh-loaddefs, ;; for if it does it will introduce a require loop. -(require 'mh-loaddefs) +(load "mh-loaddefs" nil 'nomessage) (mh-require-cl)