mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(lib): sort bumpified modules list
This commit is contained in:
@ -242,7 +242,7 @@ Must be run from a magit diff buffer."
|
|||||||
(mapconcat (lambda (x)
|
(mapconcat (lambda (x)
|
||||||
(mapconcat #'symbol-name x " "))
|
(mapconcat #'symbol-name x " "))
|
||||||
(cl-loop with alist = ()
|
(cl-loop with alist = ()
|
||||||
for (category . module) in targets
|
for (category . module) in (reverse targets)
|
||||||
do (setf (alist-get category alist)
|
do (setf (alist-get category alist)
|
||||||
(append (alist-get category alist) (list module)))
|
(append (alist-get category alist) (list module)))
|
||||||
finally return alist)
|
finally return alist)
|
||||||
|
Reference in New Issue
Block a user