Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
563cfbf7
Commit
563cfbf7
authored
Jul 10, 2007
by
Stefan Monnier
Browse files
(autoload-generate-file-autoloads): Be careful
with EOLs when generating MD5 checksums.
parent
b1b1e473
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lisp/emacs-lisp/autoload.el
lisp/emacs-lisp/autoload.el
+4
-1
No files found.
lisp/emacs-lisp/autoload.el
View file @
563cfbf7
...
...
@@ -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
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment