]> git.eshelyaron.com Git - emacs.git/commitdiff
; Improve time-convert call in recently changed test
authorStefan Kangas <stefan@marxist.se>
Sun, 7 Aug 2022 11:16:53 +0000 (13:16 +0200)
committerStefan Kangas <stefan@marxist.se>
Sun, 7 Aug 2022 11:16:53 +0000 (13:16 +0200)
* test/lisp/eshell/em-pred-tests.el
(eshell-parse-file-name-attributes): Use t instead of nil as
second argument to 'time-convert'.
Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.

test/lisp/eshell/em-pred-tests.el

index ef31a5d1473981bc0957cfc84d084d4a86a5f042..0d6351ec826d349c8d5ebdf73bd4e3b0692b6fc3 100644 (file)
@@ -75,7 +75,7 @@ The following attributes are recognized:
               (`(,(and (or "links" "uid" "gid" "size") key) ,value)
                (cons (intern key) (string-to-number value)))
               (`(,(and (or "atime" "mtime" "ctime") key) ,value)
-               (cons (intern key) (time-convert (string-to-number value) nil)))
+               (cons (intern key) (time-convert (string-to-number value) t)))
               (`(,key ,value)
                (cons (intern key) value))
               (_ (error "invalid format %S" i))))