aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-02-06 07:33:20 +0000
committerGlenn Morris2009-02-06 07:33:20 +0000
commit81d8114e203ba2c9dc71ab82ecd6d4f653466f64 (patch)
treee6ac860acde09e9a193aba314515bb834b79a22e
parent5ff0e5ed1a05f73bf50698cc5603b5b6e55f56a5 (diff)
downloademacs-81d8114e203ba2c9dc71ab82ecd6d4f653466f64.tar.gz
emacs-81d8114e203ba2c9dc71ab82ecd6d4f653466f64.zip
(unrmail): Use current-time-string.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/mail/unrmail.el3
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 76b55d3c4aa..bd205450369 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12009-02-06 Glenn Morris <rgm@gnu.org> 12009-02-06 Glenn Morris <rgm@gnu.org>
2 2
3 * mail/unrmail.el (unrmail): Use current-time-string.
4
3 * simple.el (kill-whole-line): Provide a default argument of 1. 5 * simple.el (kill-whole-line): Provide a default argument of 1.
4 6
5 * mail/undigest.el (rmail-mail-separator): Delete. 7 * mail/undigest.el (rmail-mail-separator): Delete.
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el
index bd000deddd2..395e7d2e2e6 100644
--- a/lisp/mail/unrmail.el
+++ b/lisp/mail/unrmail.el
@@ -194,8 +194,7 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'."
194 (or 194 (or
195 (and date 195 (and date
196 (ignore-errors 196 (ignore-errors
197 (format-time-string 197 (current-time-string
198 "%a %b %e %T %Y"
199 (date-to-time date)))) 198 (date-to-time date))))
200 (current-time-string)))))) 199 (current-time-string))))))
201 200