diff options
| author | Stefan Monnier | 2007-07-10 18:05:36 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-07-10 18:05:36 +0000 |
| commit | 563cfbf7a755bbbb06191997cb28332bf8f4c237 (patch) | |
| tree | 178fd0c994e3334bb9d9876a47f1a240f4fca0fa | |
| parent | b1b1e473bb08b505c265e18aecb9ba33395b8ff8 (diff) | |
| download | emacs-563cfbf7a755bbbb06191997cb28332bf8f4c237.tar.gz emacs-563cfbf7a755bbbb06191997cb28332bf8f4c237.zip | |
(autoload-generate-file-autoloads): Be careful
with EOLs when generating MD5 checksums.
| -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 | |||
| 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)))) |