aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wohler2011-07-03 19:53:16 -0700
committerBill Wohler2011-07-03 19:53:16 -0700
commit92ec073e6441e7abfdc49c7734a880fecdf2d1f3 (patch)
treed43252d24b1ca003ea7ed3d7dbd5dd05d58035f8
parent54a5db74a373f36180e336e594d9b16154386dd8 (diff)
downloademacs-92ec073e6441e7abfdc49c7734a880fecdf2d1f3.tar.gz
emacs-92ec073e6441e7abfdc49c7734a880fecdf2d1f3.zip
* mh-e.el: Just require mh-loaddefs since loading it in an
eval-and-compile block causes compilation errors in XEmacs.
-rw-r--r--lisp/mh-e/ChangeLog3
-rw-r--r--lisp/mh-e/mh-e.el5
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index 38ee3941260..365c444d591 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,5 +1,8 @@
12011-07-04 Bill Wohler <wohler@newt.com> 12011-07-04 Bill Wohler <wohler@newt.com>
2 2
3 * mh-e.el: Just require mh-loaddefs since loading it in an
4 eval-and-compile block causes compilation errors in XEmacs.
5
3 * mh-acros.el, mh-comp.el, mh-e.el, mh-folder.el, mh-letter.el: 6 * mh-acros.el, mh-comp.el, mh-e.el, mh-folder.el, mh-letter.el:
4 * mh-mime.el, mh-search.el, mh-seq.el: Shush XEmacs compiler in 7 * mh-mime.el, mh-search.el, mh-seq.el: Shush XEmacs compiler in
5 mh-do-in-xemacs block. 8 mh-do-in-xemacs block.
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el
index eae7529e4d4..87272b1c83b 100644
--- a/lisp/mh-e/mh-e.el
+++ b/lisp/mh-e/mh-e.el
@@ -90,10 +90,7 @@
90;; Provide functions to the rest of MH-E. However, mh-e.el must not 90;; Provide functions to the rest of MH-E. However, mh-e.el must not
91;; use any definitions in files that require mh-e from mh-loaddefs, 91;; use any definitions in files that require mh-e from mh-loaddefs,
92;; for if it does it will introduce a require loop. 92;; for if it does it will introduce a require loop.
93(eval-and-compile 93(require 'mh-loaddefs)
94 ;; Load it during compilation as well, since it defines the macro
95 ;; mh-require-cl.
96 (load "mh-loaddefs" nil 'nomessage))
97 94
98(mh-require-cl) 95(mh-require-cl)
99 96