From: Eshel Yaron Date: Sat, 13 Jul 2024 20:56:23 +0000 (+0200) Subject: ; Fix bootstrap X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c512827d906a4c6ba008e3151cef702254cb5747;p=emacs.git ; Fix bootstrap --- diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el index b8b32693948..1ba9cb11292 100644 --- a/lisp/cus-dep.el +++ b/lisp/cus-dep.el @@ -172,7 +172,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS" (when found (push (cons (symbol-name symbol) (with-output-to-string - (prin1 (sort found)))) + (prin1 (sort found #'string<)))) alist)))))) (dolist (e (sort alist)) (insert "(custom--add-custom-loads '" (car e) " '" (cdr e) ")\n")))