# HG changeset patch # User Stefan Monnier # Date 960786526 0 # Node ID 4d69640ddf11724757e511e698b120ae94cfebd8 # Parent 2f88e6f0d32b218a6ce3418631b07832705982e7 (gulp-send-requests): Don't quote lambda. diff -r 2f88e6f0d32b -r 4d69640ddf11 lisp/emacs-lisp/gulp.el --- a/lisp/emacs-lisp/gulp.el Mon Jun 12 05:06:37 2000 +0000 +++ b/lisp/emacs-lisp/gulp.el Mon Jun 12 05:08:46 2000 +0000 @@ -103,11 +103,11 @@ (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)