Since commit 59f46ec3, `magit-rebase-info's output list contains a fourth element, being the SHA-1 of the commit git-rebase(1) stopped at.
Signed-off-by: Pieter Praet <[email protected]> --- magit.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/magit.el b/magit.el index ac5aa39..5698f12 100644 --- a/magit.el +++ b/magit.el @@ -4888,9 +4888,10 @@ (defun magit-guess-remote () (defun magit-rebase-info () "Return a list indicating the state of an in-progress rebase. -The returned list has the form (ONTO DONE TOTAL). +The returned list has the form (ONTO DONE TOTAL STOPPED). ONTO is the commit being rebased onto. DONE and TOTAL are integers with obvious meanings. +STOPPED is the SHA-1 of the commit at which rebase stopped. Return nil if there is no rebase in progress." (let ((m (magit-git-dir "rebase-merge")) -- 1.7.11.1 -- --- You received this message because you are subscribed to the Google Groups "magit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
