From 6083e746f7c009b16d2178b7a4eddb309f50d738 Mon Sep 17 00:00:00 2001 From: eshrh Date: Thu, 14 Jul 2022 20:47:25 -0400 Subject: [PATCH] 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. --- meow-command.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meow-command.el b/meow-command.el index 0298aa3..b3ab3aa 100644 --- a/meow-command.el +++ b/meow-command.el @@ -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))