# HG changeset patch # User Gerd Moellmann # Date 947421382 0 # Node ID 08855e02ad796e47360337dddabca90c87532f5c # Parent 7958d9720d8fb3669c5ffc3136604d59388f77d7 (toplevel): Provide `sendmail' when compiling before `require'ing rmail and mailalias to prevent infinite recursion. diff -r 7958d9720d8f -r 08855e02ad79 lisp/mail/sendmail.el --- a/lisp/mail/sendmail.el Sat Jan 08 22:36:16 2000 +0000 +++ b/lisp/mail/sendmail.el Sun Jan 09 12:36:22 2000 +0000 @@ -29,6 +29,8 @@ ;;; Code: (eval-when-compile + ;; Necessary to avoid recursive `require's. + (provide 'sendmail) (require 'rmail) (require 'mailalias))