* lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads):
Respect autoload-timestamps for "actual autoloads are elsewhere" case.
This commit is contained in:
parent
9eb80d93a7
commit
573dde70a4
1 changed files with 3 additions and 1 deletions
|
@ -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)))))))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue