From cc98f18a270bbd85f2752d34a7747d582258c012 Mon Sep 17 00:00:00 2001 From: gs-101 <172639817+gs-101@users.noreply.github.com> Date: Tue, 24 Dec 2024 15:30:32 -0300 Subject: [PATCH] Fix meow-pop-to-mark (#697) Correctly reference the following commands: * meow-pop-to-mark * meow-unpop-to-mark --- meow-command.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meow-command.el b/meow-command.el index e6d3539..5434028 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)) + (unless (member last-command '(meow-pop-to-mark meow-unpop-to-mark)) (setq mark-ring (append mark-ring (list (point-marker))))) (pop-to-mark-command))