]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid timestamp info loss in mh-alias-tstamp
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 6 Dec 2021 06:56:49 +0000 (22:56 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 6 Dec 2021 07:24:10 +0000 (23:24 -0800)
* 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

index 8087df97c94fcc38e913a410e751872092fe206d..d26662110020a270fe8307b0711569b6a8b70e72 100644 (file)
@@ -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)