(gulp-send-requests): Don't quote lambda.

This commit is contained in:
Stefan Monnier 2000-06-12 05:08:46 +00:00
parent 72d8b544c6
commit 811ec3a8df

View file

@ -103,11 +103,11 @@ is left in the `*gulp*' buffer at the end."
(while (setq node (car m-p-alist))
(setq msg (gulp-create-message (cdr node) time))
(setq mail-setup-hook
'(lambda ()
(mail-subject)
(insert "It's time for Emacs updates again")
(goto-char (point-max))
(insert msg)))
(lambda ()
(mail-subject)
(insert "It's time for Emacs updates again")
(goto-char (point-max))
(insert msg)))
(mail nil (car node))
(goto-char (point-min))
(if (y-or-n-p "Send? ") (mail-send)