aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorGerd Moellmann2000-01-09 12:37:37 +0000
committerGerd Moellmann2000-01-09 12:37:37 +0000
commitbf61662d883eefb73333f8cb9020aebfa68d0ac0 (patch)
tree5e2fe611aadeedc857ceff5d9e63309b22d3a36b /lisp/mail
parentbe0b8d69651fd9fd97f05c824e6084fe18f0cb39 (diff)
downloademacs-bf61662d883eefb73333f8cb9020aebfa68d0ac0.tar.gz
emacs-bf61662d883eefb73333f8cb9020aebfa68d0ac0.zip
(toplevel): Provide `sendmail' when compiling
before `require'ing rmail and mailalias to prevent infinite recursion.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/sendmail.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index a2b74d0de5f..ab9f8d6d1b8 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -29,6 +29,8 @@
29 29
30;;; Code: 30;;; Code:
31(eval-when-compile 31(eval-when-compile
32 ;; Necessary to avoid recursive `require's.
33 (provide 'sendmail)
32 (require 'rmail) 34 (require 'rmail)
33 (require 'mailalias)) 35 (require 'mailalias))
34 36