changeset 48368:1fa683e2a917

(update-autoloads-from-directories): Sort the list of files with no autoloads.
author Markus Rost <rost@math.uni-bielefeld.de>
date Sat, 16 Nov 2002 22:40:32 +0000
parents 116b9f9915e6
children 8591a9dd6918
files lisp/emacs-lisp/autoload.el
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/autoload.el	Sat Nov 16 19:19:35 2002 +0000
+++ b/lisp/emacs-lisp/autoload.el	Sat Nov 16 22:40:32 2002 +0000
@@ -537,6 +537,8 @@
 	    (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)