From: Stefan Monnier Date: Mon, 12 Jun 2000 05:08:46 +0000 (+0000) Subject: (gulp-send-requests): Don't quote lambda. X-Git-Tag: emacs-pretest-21.0.90~3383 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=811ec3a8df8a14b490f4309f566c2b4ce93b955f;p=emacs.git (gulp-send-requests): Don't quote lambda. --- diff --git a/lisp/emacs-lisp/gulp.el b/lisp/emacs-lisp/gulp.el index 096460a1961..877e62255b3 100644 --- a/lisp/emacs-lisp/gulp.el +++ b/lisp/emacs-lisp/gulp.el @@ -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)