diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-11-04 00:27:34 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-11-04 00:27:34 +0000 |
commit | d3d5f4f504d852b382838568dd1ee23fd151464c (patch) | |
tree | 880d027ee7e9ace7d2782a321be4c7d7f974ccae /lisp/mh-e | |
parent | 7e83e8b459e07f89f8a1e3902637b6b2e7a94288 (diff) | |
download | emacs-d3d5f4f504d852b382838568dd1ee23fd151464c.tar.gz |
* 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.
Diffstat (limited to 'lisp/mh-e')
-rw-r--r-- | lisp/mh-e/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/mh-e/mh-e.el | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 3102f74f506..0ad943588bd 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -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. diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 00c1c895bf3..7b7a9e5d9b5 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -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) |