From: morioka Date: Thu, 19 Aug 1999 13:02:42 +0000 (+0000) Subject: (smtpmail-send-it): Don't use bare lambda. X-Git-Tag: clime-1_13_0~4 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=3b54308ec2600d2d5eca0ead8c49cede635d05aa;p=elisp%2Fflim.git (smtpmail-send-it): Don't use bare lambda. --- diff --git a/smtpmail.el b/smtpmail.el index e5fbe5a..aa635ed 100644 --- a/smtpmail.el +++ b/smtpmail.el @@ -230,11 +230,11 @@ This is relative to `smtpmail-queue-dir'.") tembuf)) (error "Sending failed; SMTP protocol error")) (error "Sending failed; no recipients")) - (let* ((file-data (concat - smtpmail-queue-dir - (mapconcat - (lambda (arg) (format "%x" arg)) - (current-time) ""))) + (let* ((file-data (concat smtpmail-queue-dir + (mapconcat + (function + (lambda (arg) (format "%x" arg))) + (current-time) ""))) (file-elisp (concat file-data ".el")) (buffer-data (create-file-buffer file-data)) (buffer-elisp (create-file-buffer file-elisp))