From d67e10297cea7f8b57178340b0506840e80649a7 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 13 Sep 1999 23:41:25 +0000 Subject: [PATCH] (smtpmail-send-it): Remove needless `concat'. --- ChangeLog | 4 ++++ smtpmail.el | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 52a3423..9206438 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-09-14 Katsumi Yamaoka + + * smtpmail.el (smtpmail-send-it): Remove needless `concat'. + 1999-09-08 Yoshiki Hayashi * mime-ja.sgml, mime-en.sgml (Entity creation): Fix typo. diff --git a/smtpmail.el b/smtpmail.el index 4ef7161..74638aa 100644 --- a/smtpmail.el +++ b/smtpmail.el @@ -234,8 +234,8 @@ This is relative to `smtpmail-queue-dir'.") (let* ((file-data (convert-standard-filename (concat (file-name-as-directory smtpmail-queue-dir) - (concat (time-stamp-yyyy-mm-dd) - "_" (time-stamp-hh:mm:ss))))) + (time-stamp-yyyy-mm-dd) + "_" (time-stamp-hh:mm:ss)))) (file-elisp (concat file-data ".el")) (buffer-data (create-file-buffer file-data)) (buffer-elisp (create-file-buffer file-elisp)) -- 1.7.10.4