aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/autoload.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index 0fa89f2a173..d057ee028dc 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -432,7 +432,10 @@ Return non-nil iff FILE adds no autoloads to OUTFILE
432 ;; checksum in secondary autoload files where we do 432 ;; checksum in secondary autoload files where we do
433 ;; not need the time-stamp optimization because it is 433 ;; not need the time-stamp optimization because it is
434 ;; already provided by the primary autoloads file. 434 ;; already provided by the primary autoloads file.
435 (md5 secondary-autoloads-file-buf nil nil 'emacs-mule) 435 (md5 secondary-autoloads-file-buf
436 ;; We'd really want to just use
437 ;; `emacs-internal' instead.
438 nil nil 'emacs-mule-unix)
436 (nth 5 (file-attributes relfile)))) 439 (nth 5 (file-attributes relfile))))
437 (insert ";;; Generated autoloads from " relfile "\n")) 440 (insert ";;; Generated autoloads from " relfile "\n"))
438 (insert generate-autoload-section-trailer)))) 441 (insert generate-autoload-section-trailer))))