branch: elpa/multiple-cursors
commit ec4781394c23be73656da1c0f703f32bd85f602f
Author: Maciej Katafiasz <[email protected]>
Commit: Maciej Katafiasz <[email protected]>

    Derp, multiple cursors means > 1, not > 0.
---
 mc-mark-more.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mc-mark-more.el b/mc-mark-more.el
index e07b360..48f15ae 100644
--- a/mc-mark-more.el
+++ b/mc-mark-more.el
@@ -427,7 +427,7 @@ If the region is inactive or on a single line, it will 
behave like
 `mc/mark-all-like-this-dwim'."
   (interactive "P")
   (if (and (use-region-p)
-           (not (> (mc/num-cursors) 0))
+           (not (> (mc/num-cursors) 1))
            (not (= (line-number-at-pos (region-beginning))
                    (line-number-at-pos (region-end)))))
       (if arg

Reply via email to