summaryrefslogtreecommitdiff
path: root/lisp/mh-e/mh-alias.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2017-05-06 18:20:21 -0700
committerGlenn Morris <rgm@gnu.org>2017-05-06 18:20:21 -0700
commit1f8036a522d4a7603e0b07fa5cc70f5bbdc15653 (patch)
tree7e109f127d04f83a4179ab5153502925edce75e5 /lisp/mh-e/mh-alias.el
parent233cfb0ea93ecdd2b63298be4243059e2e7a91fd (diff)
downloademacs-1f8036a522d4a7603e0b07fa5cc70f5bbdc15653.tar.gz
Evaluate mh-require when compiling
* lisp/mh-e/mh-alias.el, lisp/mh-e/mh-folder.el: * lisp/mh-e/mh-gnus.el, lisp/mh-e/mh-search.el: Evaluate mh-require when compiling, as require is automatically. * lisp/mh-e/mh-gnus.el: No longer disable byte-compilation.
Diffstat (limited to 'lisp/mh-e/mh-alias.el')
-rw-r--r--lisp/mh-e/mh-alias.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mh-e/mh-alias.el b/lisp/mh-e/mh-alias.el
index 82602eecf27..d62ac671ea1 100644
--- a/lisp/mh-e/mh-alias.el
+++ b/lisp/mh-e/mh-alias.el
@@ -252,8 +252,9 @@ Blind aliases or users from /etc/passwd are not expanded."
(t
(mh-alias-ali alias))))
-(mh-require 'crm nil t) ; completing-read-multiple
-(mh-require 'multi-prompt nil t)
+(eval-and-compile
+ (mh-require 'crm nil t) ; completing-read-multiple
+ (mh-require 'multi-prompt nil t))
;;;###mh-autoload
(defun mh-read-address (prompt)