From: Gerd Moellmann Date: Sun, 9 Jan 2000 12:37:37 +0000 (+0000) Subject: (toplevel): Provide `sendmail' when compiling X-Git-Tag: emacs-pretest-21.0.90~5414 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bf61662d883eefb73333f8cb9020aebfa68d0ac0;p=emacs.git (toplevel): Provide `sendmail' when compiling before `require'ing rmail and mailalias to prevent infinite recursion. --- 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))