emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 573dde7: * lisp/emacs-lisp/autoload.el (autoload-ge


From: Glenn Morris
Subject: [Emacs-diffs] master 573dde7: * lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads):
Date: Mon, 1 Aug 2016 20:32:09 +0000 (UTC)

branch: master
commit 573dde70a4bcd7ad972e25260374f5019c671df1
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads):
    Respect autoload-timestamps for "actual autoloads are elsewhere" case.
---
 lisp/emacs-lisp/autoload.el |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index fbb08fc..aa58f7b 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -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)))))))
 



reply via email to

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