+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.
;;; Code:
-(require 'cal-loaddefs)
+(load "cal-loaddefs" nil 'nomessage)
;; Avoid recursive load of calendar when loading cal-menu. Yuck.
(provide 'calendar)
;;; Code:
(require 'calendar)
-(require 'diary-loaddefs)
+(load "diary-loaddefs" nil 'nomessage)
(defgroup diary nil
"Emacs diary."
;;; Code:
(require 'calendar)
-(require 'hol-loaddefs)
+(load "hol-loaddefs" nil 'nomessage)
(defgroup holidays nil
"Holidays support in calendar."
;; 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:
+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.
* 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.
;; 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)