Mercurial > emacs
changeset 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 | 2f88e6f0d32b |
children | 9ae7afa3d8d1 |
files | lisp/emacs-lisp/gulp.el |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
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)