Skip to content

Commit

Permalink
fix meow-line mark bug
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
eshrh committed Jul 15, 2022
1 parent 10cae35 commit 6083e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meow-command.el
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ numeric, repeat times.
(interactive "p")
(unless (or expand (equal '(expand . line) (meow--selection-type)))
(meow--cancel-selection))
(let* ((orig (mark))
(let* ((orig (mark t))
(n (if (meow--direction-backward-p)
(- n)
n))
Expand Down

0 comments on commit 6083e74

Please sign in to comment.