diff lisp/emacs-lisp/autoload.el @ 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 8aa7f1b66163
children 3bb49962b482
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))))