fix(lib): sort bumpified modules list
This commit is contained in:
parent
bc47e72984
commit
c16f38ab1d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue