Skip to content

Commit 6083e74

Browse files
committed
fix meow-line mark bug
includes the FORCE argument to (mark) to ensure it does not throw an error when the mark is inactive in transient mark mode. closes #269.
1 parent 10cae35 commit 6083e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meow-command.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ numeric, repeat times.
878878
(interactive "p")
879879
(unless (or expand (equal '(expand . line) (meow--selection-type)))
880880
(meow--cancel-selection))
881-
(let* ((orig (mark))
881+
(let* ((orig (mark t))
882882
(n (if (meow--direction-backward-p)
883883
(- n)
884884
n))

0 commit comments

Comments
 (0)