1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-12 09:28:24 +00:00

Make emacs-news-next-untagged-entry push the mark

* lisp/textmodes/emacs-news-mode.el
(emacs-news-next-untagged-entry): Push the mark for easier
navigation back to where we were.
This commit is contained in:
Lars Ingebrigtsen 2022-04-16 16:11:45 +02:00
parent 5752a839e5
commit 4f1612188b

View File

@ -107,6 +107,7 @@
(setq found t))))))
(if found
(progn
(push-mark start)
(message "Untagged entry")
(beginning-of-line)
t)