Skip to content

Commit

Permalink
Fix meow-pop-to-mark (#697) (#703)
Browse files Browse the repository at this point in the history
Correctly reference the following commands:

* meow-pop-to-mark
* meow-unpop-to-mark

Co-authored-by: tianshu <[email protected]>
  • Loading branch information
gs-101 and DogLooksGood authored Dec 24, 2024
1 parent 43bc65a commit af3f10e
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 @@ -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))

Expand Down

0 comments on commit af3f10e

Please sign in to comment.