(update-autoloads-from-directories): Sort the list of files with no

autoloads.
This commit is contained in:
Markus Rost 2002-11-16 22:41:33 +00:00
parent 5d22135b02
commit 000d99237f
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-11-16 Markus Rost <rost@math.ohio-state.edu>
* emacs-lisp/autoload.el (update-autoloads-from-directories):
Sort the list of files with no autoloads.
2002-08-23 Alan Shutko <ats@acm.org>
* calendar/diary-lib.el (list-diary-entries): Pass a marker

View file

@ -537,6 +537,8 @@ This uses `update-file-autoloads' (which see) do its work."
(append no-autoloads
(delq nil (mapcar 'update-file-autoloads files))))
(when no-autoloads
;; Sort them for better readability.
(setq no-autoloads (sort no-autoloads 'string<))
;; Add the `no-autoloads' section.
(goto-char (point-max))
(search-backward "\f" nil t)