From c512827d906a4c6ba008e3151cef702254cb5747 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Sat, 13 Jul 2024 22:56:23 +0200 Subject: [PATCH] ; Fix bootstrap --- lisp/cus-dep.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))) -- 2.39.2