Mercurial > emacs
changeset 81800:e29d41367d51
(autoload-generate-file-autoloads): Be careful
with EOLs when generating MD5 checksums.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 10 Jul 2007 18:05:36 +0000 |
parents | a1047475197b |
children | 2e8d5916d236 |
files | lisp/emacs-lisp/autoload.el |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/autoload.el Tue Jul 10 18:03:43 2007 +0000 +++ b/lisp/emacs-lisp/autoload.el Tue Jul 10 18:05:36 2007 +0000 @@ -432,7 +432,10 @@ ;; 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))))