diff --git a/mc-mark-more.el b/mc-mark-more.el index 2ba6e54..0d3ee36 100644 --- a/mc-mark-more.el +++ b/mc-mark-more.el @@ -65,7 +65,7 @@ furthest)) (defun mc/furthest-cursor-after-point () - (let ((end (if mark-active (max (mark) (point)) (point))) + (let ((end (if (use-region-p) (use-region-end) (point))) furthest) (mc/for-each-fake-cursor (when (> (mc/cursor-end cursor) end)