1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(outline-mark-subtree): Activate the mark.

This commit is contained in:
Stefan Monnier 2005-10-04 20:54:26 +00:00
parent 0cb7f2c026
commit d35b8a281b

View file

@ -685,7 +685,7 @@ This puts point at the start of the current subtree, and mark at the end."
(outline-previous-visible-heading 1))
(setq beg (point))
(outline-end-of-subtree)
(push-mark (point))
(push-mark (point) nil t)
(goto-char beg)))