diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-09-19 23:31:47 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-09-19 23:31:47 +0200 |
| commit | db0671117e8da348a993bdec96cc5f984ebefbe2 (patch) | |
| tree | 4de4a7647e99c0aa97a5d5d2d80fc1101347e304 | |
| parent | d3f65e92fc83d9d63d947eb95c64b372c28abb03 (diff) | |
magit-rebase-continue: Fix recent refactor mistake
| -rw-r--r-- | lisp/magit-sequence.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/magit-sequence.el b/lisp/magit-sequence.el index 5089189..97f1563 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))) |
