# HG changeset patch
# User Markus Rost <rost@math.uni-bielefeld.de>
# Date 1037486432 0
# Node ID 1fa683e2a917b5c8e03ea5e2ef2372988ffdf3a3
# Parent  116b9f9915e61cc42c8b99e789b4a34cf695e387
(update-autoloads-from-directories):  Sort the list of files with no
autoloads.

diff -r 116b9f9915e6 -r 1fa683e2a917 lisp/emacs-lisp/autoload.el
--- 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)