aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/mail/sendmail.el2
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 30d786233c..27268c5d8a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2000-01-09 Gerd Moellmann <[email protected]>
+
+ * sendmail.el (toplevel): Provide `sendmail' when compiling
+ before `require'ing rmail and mailalias to prevent infinite
+ recursion.
+
2000-01-08 Dave Love <[email protected]>
* backquote.el: Remove inappropriate customization (allowing
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index a2b74d0de5..ab9f8d6d1b 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -29,6 +29,8 @@
;;; Code:
(eval-when-compile
+ ;; Necessary to avoid recursive `require's.
+ (provide 'sendmail)
(require 'rmail)
(require 'mailalias))