* lisp/emacs-lisp/autoload.el (autoload-find-destination):
Avoid specifying the length of a time object (it has not been "2" for some time).
This commit is contained in:
parent
b6b47af82f
commit
1ae088fba7
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue