From 3540a17fdd5792376cdb78695280a15ee189eec5 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Sat, 10 Jun 2006 23:04:00 +0000 Subject: emms-info: Never return 0 for info-mtime, since emms-time-less-p does not like this. Use nil instead. darcs-hash:20060610230409-1bfb2-fa73c67de417d1643dfb3b99cd7cf16b861ff8ab.gz --- emms-info.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emms-info.el b/emms-info.el index 2b74f15..03a3c81 100644 --- a/emms-info.el +++ b/emms-info.el @@ -102,11 +102,11 @@ Return t when the track got changed." (defun emms-info-track-file-mtime (track) "Return the mtime of the file of TRACK, if any. -Return zero otherwise." +Return nil otherwise." (if (eq (emms-track-type track) 'file) (nth 5 (file-attributes (emms-track-name track))) - 0)) + nil)) (defun emms-info-track-description (track) "Return a description of the current track." -- cgit v1.2.3