From bf61662d883eefb73333f8cb9020aebfa68d0ac0 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Sun, 9 Jan 2000 12:37:37 +0000 Subject: [PATCH] (toplevel): Provide `sendmail' when compiling before `require'ing rmail and mailalias to prevent infinite recursion. --- lisp/ChangeLog | 6 ++++++ lisp/mail/sendmail.el | 2 ++ 2 files changed, 8 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 30d786233c5..27268c5d8a6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2000-01-09 Gerd Moellmann + + * sendmail.el (toplevel): Provide `sendmail' when compiling + before `require'ing rmail and mailalias to prevent infinite + recursion. + 2000-01-08 Dave Love * 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 @@ ;;; Code: (eval-when-compile + ;; Necessary to avoid recursive `require's. + (provide 'sendmail) (require 'rmail) (require 'mailalias))