changeset 105844:a2094e76667e

* 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.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 04 Nov 2009 00:27:34 +0000
parents 4e4705fae3d0
children 20a7667a5619
files lisp/ChangeLog lisp/calendar/calendar.el lisp/calendar/diary-lib.el lisp/calendar/holidays.el lisp/eshell/esh-module.el lisp/mh-e/ChangeLog lisp/mh-e/mh-e.el
diffstat 7 files changed, 17 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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  <lekktu@gmail.com>
+
+	* 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  <monnier@iro.umontreal.ca>
 
 	* calendar/todo-mode.el (todo-add-category): Don't hardcode point-min==1.
--- 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)
--- 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."
--- 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."
--- 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:
 
--- 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  <lekktu@gmail.com>
+
+	* mh-e.el (mh-loaddefs): Load rather than require.
+
 2009-10-06  Glenn Morris  <rgm@gnu.org>
 
 	* 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.
--- 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)