diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-07-10 18:05:36 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-07-10 18:05:36 +0000 |
commit | 563cfbf7a755bbbb06191997cb28332bf8f4c237 (patch) | |
tree | 178fd0c994e3334bb9d9876a47f1a240f4fca0fa /lisp/emacs-lisp | |
parent | b1b1e473bb08b505c265e18aecb9ba33395b8ff8 (diff) | |
download | emacs-563cfbf7a755bbbb06191997cb28332bf8f4c237.tar.gz emacs-563cfbf7a755bbbb06191997cb28332bf8f4c237.tar.bz2 emacs-563cfbf7a755bbbb06191997cb28332bf8f4c237.zip |
(autoload-generate-file-autoloads): Be careful
with EOLs when generating MD5 checksums.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 5 |
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 ;; checksum in secondary autoload files where we do ;; not need the time-stamp optimization because it is ;; already provided by the primary autoloads file. - (md5 secondary-autoloads-file-buf nil nil 'emacs-mule) + (md5 secondary-autoloads-file-buf + ;; We'd really want to just use + ;; `emacs-internal' instead. + nil nil 'emacs-mule-unix) (nth 5 (file-attributes relfile)))) (insert ";;; Generated autoloads from " relfile "\n")) (insert generate-autoload-section-trailer)))) |