# HG changeset patch # User Stefan Monnier # Date 1184090736 0 # Node ID e29d41367d5124a69dc5d48479bf1c2dfeeddf4a # Parent a1047475197be55927b2e2db22eeaf656b69f121 (autoload-generate-file-autoloads): Be careful with EOLs when generating MD5 checksums. diff -r a1047475197b -r e29d41367d51 lisp/emacs-lisp/autoload.el --- 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))))