1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

(toplevel): Provide `sendmail' when compiling

before `require'ing rmail and mailalias to prevent infinite
recursion.
This commit is contained in:
Gerd Moellmann 2000-01-09 12:37:37 +00:00
parent be0b8d6965
commit bf61662d88
2 changed files with 8 additions and 0 deletions

View 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

View File

@ -29,6 +29,8 @@
;;; Code:
(eval-when-compile
;; Necessary to avoid recursive `require's.
(provide 'sendmail)
(require 'rmail)
(require 'mailalias))