From af3f10e95ebb0754a1afcd4883e8e2e680490c4b Mon Sep 17 00:00:00 2001 From: Gabriel Santos <172639817+gs-101@users.noreply.github.com> Date: Tue, 24 Dec 2024 18:15:01 -0300 Subject: [PATCH] Fix meow-pop-to-mark (#697) (#703) Correctly reference the following commands: * meow-pop-to-mark * meow-unpop-to-mark Co-authored-by: tianshu --- meow-command.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meow-command.el b/meow-command.el index 3eb312a..fdd572f 100644 --- a/meow-command.el +++ b/meow-command.el @@ -1562,7 +1562,7 @@ To search backward, use \\[negative-argument]." Before jump, a mark of current location will be created." (interactive) (meow--cancel-selection) - (unless (member last-command '(meow-pop-to-mark-command meow-unpop-to-mark-command meow-pop-or-unpop-to-mark)) + (unless (member last-command '(meow-pop-to-mark meow-unpop-to-mark meow-pop-or-unpop-to-mark)) (setq mark-ring (append mark-ring (list (point-marker))))) (pop-to-mark-command))