From: Paul Eggert Date: Mon, 6 Dec 2021 06:56:49 +0000 (-0800) Subject: Avoid timestamp info loss in mh-alias-tstamp X-Git-Tag: emacs-29.0.90~3612^2^2~2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=19932c32039b8e61486195504a72bfc037b29658;p=emacs.git Avoid timestamp info loss in mh-alias-tstamp * lisp/mh-e/mh-alias.el (mh-alias-tstamp): Don’t lose subsecond info when setting mh-alias-tstamp. --- diff --git a/lisp/mh-e/mh-alias.el b/lisp/mh-e/mh-alias.el index 8087df97c94..d2666211002 100644 --- a/lisp/mh-e/mh-alias.el +++ b/lisp/mh-e/mh-alias.el @@ -67,8 +67,7 @@ Return t if any file listed in the Aliasfile MH profile component has been modified since the timestamp. If ARG is non-nil, set timestamp with the current time." (if arg - (let ((time (current-time))) - (setq mh-alias-tstamp (list (nth 0 time) (nth 1 time)))) + (setq mh-alias-tstamp (current-time)) (let ((stamp)) (car (memq t (mapcar (lambda (file)