branch: elpa/magit
commit db0671117e8da348a993bdec96cc5f984ebefbe2
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    magit-rebase-continue: Fix recent refactor mistake
---
 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 50891894f8f..97f1563431e 100644
--- a/lisp/magit-sequence.el
+++ b/lisp/magit-sequence.el
@@ -821,7 +821,7 @@ edit.  With a prefix argument the old message is reused 
as-is."
   (cond
    ((not (magit-rebase-in-progress-p))
     (user-error "No rebase in progress"))
-   ((not (magit-anything-unstaged-p t))
+   ((magit-anything-unstaged-p t)
     (user-error "Cannot continue rebase with unstaged changes"))
    (t
     (let ((dir (magit-gitdir)))

Reply via email to