]> git.eshelyaron.com Git - emacs.git/commitdiff
(gulp-send-requests): Don't quote lambda.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Jun 2000 05:08:46 +0000 (05:08 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Jun 2000 05:08:46 +0000 (05:08 +0000)
lisp/emacs-lisp/gulp.el

index 096460a196198582ba91a6014bcccae53c63185c..877e62255b37a58f9b1a3d8d09b4a58b82ed454e 100644 (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)