diff options
| author | Glenn Morris | 2016-02-29 21:03:47 -0800 |
|---|---|---|
| committer | Glenn Morris | 2016-02-29 21:03:47 -0800 |
| commit | 4694f2f90679b21797a11f579f9cb9482eb36bdf (patch) | |
| tree | bf37f0749e29d89b714c596ce79296c6aa2b04c5 | |
| parent | d84bc5555a910b8b7350a1031a0872a3f159e09e (diff) | |
| download | emacs-4694f2f90679b21797a11f579f9cb9482eb36bdf.tar.gz emacs-4694f2f90679b21797a11f579f9cb9482eb36bdf.zip | |
* lisp/emacs-lisp/autoload.el (autoload-find-destination):
Fix 6-week old merge error.
| -rw-r--r-- | 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 06231f55c27..8f2b5337ea7 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el | |||
| @@ -744,7 +744,7 @@ removes any prior now out-of-date autoload entries." | |||
| 744 | ;; last-time is the time-stamp (specifying | 744 | ;; last-time is the time-stamp (specifying |
| 745 | ;; the last time we looked at the file) and | 745 | ;; the last time we looked at the file) and |
| 746 | ;; the file hasn't been changed since. | 746 | ;; the file hasn't been changed since. |
| 747 | ((listp last-time) (= (length last-time) 2) | 747 | ((listp last-time) |
| 748 | (not (time-less-p last-time file-time))) | 748 | (not (time-less-p last-time file-time))) |
| 749 | ;; FIXME? Arguably we should throw a | 749 | ;; FIXME? Arguably we should throw a |
| 750 | ;; user error, or some kind of warning, | 750 | ;; user error, or some kind of warning, |