]> git.eshelyaron.com Git - emacs.git/commitdiff
(toplevel): Provide `sendmail' when compiling
authorGerd Moellmann <gerd@gnu.org>
Sun, 9 Jan 2000 12:37:37 +0000 (12:37 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sun, 9 Jan 2000 12:37:37 +0000 (12:37 +0000)
before `require'ing rmail and mailalias to prevent infinite
recursion.

lisp/ChangeLog
lisp/mail/sendmail.el

index 30d786233c50b72d8c092c480875737f33d8124e..27268c5d8a60c5d89bd978e215a9d61a2ef61d33 100644 (file)
@@ -1,3 +1,9 @@
+2000-01-09  Gerd Moellmann  <gerd@gnu.org>
+
+       * sendmail.el (toplevel): Provide `sendmail' when compiling
+       before `require'ing rmail and mailalias to prevent infinite 
+       recursion.
+
 2000-01-08  Dave Love  <fx@gnu.org>
 
        * backquote.el: Remove inappropriate customization (allowing
index a2b74d0de5f59012176b9bc1c8952e997e66f324..ab9f8d6d1b8b71d8ed9236ebb096429f50ae4672 100644 (file)
@@ -29,6 +29,8 @@
 
 ;;; Code:
 (eval-when-compile
+  ;; Necessary to avoid recursive `require's.
+  (provide 'sendmail)
   (require 'rmail)
   (require 'mailalias))