1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-04 08:47:11 +00:00

Load mh-loaddefs during compilation as well.

This commit is contained in:
Stefan Monnier 2009-11-04 04:33:25 +00:00
parent 56f14120ae
commit 601dd9a3a9
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
* mh-e.el: Load mh-loaddefs during compilation as well.
2009-11-04 Juanma Barranquero <lekktu@gmail.com>
* mh-e.el (mh-loaddefs): Load rather than require.

View File

@ -92,7 +92,10 @@
;; 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.
(load "mh-loaddefs" nil 'nomessage)
(eval-and-compile
;; Load it during compilation as well, since it defines the macro
;; mh-require-cl.
(load "mh-loaddefs" nil 'nomessage))
(mh-require-cl)