* lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads):

Respect autoload-timestamps for "actual autoloads are elsewhere" case.
This commit is contained in:
Glenn Morris 2016-08-01 16:31:57 -04:00
parent 9eb80d93a7
commit 573dde70a4

View file

@ -812,7 +812,9 @@ FILE's modification time."
(autoload-insert-section-header
(marker-buffer other-output-start)
"actual autoloads are elsewhere" load-name relfile
(nth 5 (file-attributes absfile)))
(if autoload-timestamps
(nth 5 (file-attributes absfile))
autoload--non-timestamp))
(insert ";;; Generated autoloads from " relfile "\n")))
(insert generate-autoload-section-trailer)))))))