From 19932c32039b8e61486195504a72bfc037b29658 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 5 Dec 2021 22:56:49 -0800 Subject: [PATCH] Avoid timestamp info loss in mh-alias-tstamp MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * lisp/mh-e/mh-alias.el (mh-alias-tstamp): Don’t lose subsecond info when setting mh-alias-tstamp. --- lisp/mh-e/mh-alias.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) -- 2.39.5