emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 1ae088f: * lisp/emacs-lisp/autoload.el (autoload-


From: Glenn Morris
Subject: [Emacs-diffs] emacs-25 1ae088f: * lisp/emacs-lisp/autoload.el (autoload-find-destination):
Date: Thu, 07 Jan 2016 00:57:41 +0000

branch: emacs-25
commit 1ae088fba76c9021a0d9744e303b7e7a2386a6e6
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * lisp/emacs-lisp/autoload.el (autoload-find-destination):
    
    Avoid specifying the length of a time object (it has not been "2"
    for some time).
---
 lisp/emacs-lisp/autoload.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index f21f8d6..eed7265 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -716,7 +716,7 @@ removes any prior now out-of-date autoload entries."
                                ;; last-time is the time-stamp (specifying
                                ;; the last time we looked at the file) and
                                ;; the file hasn't been changed since.
-                               (and (listp last-time) (= (length last-time) 2)
+                               (and (listp last-time)
                                     (not (time-less-p last-time file-time)))
                                ;; last-time is an MD5 checksum instead.
                                (and (stringp last-time)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]