aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/xdg.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/xdg.el b/lisp/xdg.el
index 76106f42586..e73e6199d6f 100644
--- a/lisp/xdg.el
+++ b/lisp/xdg.el
@@ -93,8 +93,8 @@ file:///foo/bar.jpg"
93 (concat (md5 (xdg-thumb-uri filename)) ".png")) 93 (concat (md5 (xdg-thumb-uri filename)) ".png"))
94 94
95(defun xdg-thumb-mtime (filename) 95(defun xdg-thumb-mtime (filename)
96 "Return modification time of FILENAME as integral seconds from the epoch." 96 "Return modification time of FILENAME as an Emacs timestamp."
97 (floor (float-time (nth 5 (file-attributes filename))))) 97 (file-attribute-modification-time (file-attributes filename)))
98 98
99 99
100;; XDG User Directories 100;; XDG User Directories