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 30d786233c5..27268c5d8a6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12000-01-09 Gerd Moellmann <gerd@gnu.org>
2
3 * sendmail.el (toplevel): Provide `sendmail' when compiling
4 before `require'ing rmail and mailalias to prevent infinite
5 recursion.
6
12000-01-08 Dave Love <fx@gnu.org> 72000-01-08 Dave Love <fx@gnu.org>
2 8
3 * backquote.el: Remove inappropriate customization (allowing 9 * backquote.el: Remove inappropriate customization (allowing
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