branch: elpa/magit
commit a634cf7b3ce3c578930d76df92eba59356e2399b
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
magit-rebase--todo: Fix order of value
The order was reversed in the recent [1: 8e72767262].
1: 2025-04-15 8e7276726242ed7040a9c721a247a6d52397da95
Speed-up inserting rebase sequences
---
lisp/magit-sequence.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/magit-sequence.el b/lisp/magit-sequence.el
index 0979e69cb3a..0c8fecbbd0a 100644
--- a/lisp/magit-sequence.el
+++ b/lisp/magit-sequence.el
@@ -1015,7 +1015,7 @@ status buffer (i.e., the reverse of how they will be
applied)."
(while-let ((obj (pop commits))
(val (pop abbrevs)))
(oset obj abbrev val)))
- (nreverse actions)))
+ actions))
(defun magit-rebase-insert-merge-sequence (onto)
(dolist (obj (magit-rebase--todo))