diff lisp/emacs-lisp/gulp.el @ 29581:4d69640ddf11

(gulp-send-requests): Don't quote lambda.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 12 Jun 2000 05:08:46 +0000
parents 31505c4d5daf
children 253f761ad37b
line wrap: on
line diff
--- 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)