summaryrefslogtreecommitdiff
path: root/lisp/outline.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-10-04 20:54:26 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-10-04 20:54:26 +0000
commit04779ccc5343cacb1f9cee1f3121922a6abe6f71 (patch)
treed44b88b2056d7c1aca5eea2b2c873b99fa0054c8 /lisp/outline.el
parent89df36c02993b0d5f28634ce1e1315503c199967 (diff)
downloademacs-04779ccc5343cacb1f9cee1f3121922a6abe6f71.tar.gz
(outline-mark-subtree): Activate the mark.
Diffstat (limited to 'lisp/outline.el')
-rw-r--r--lisp/outline.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/outline.el b/lisp/outline.el
index 012396c2eb0..8a05aaf0cd9 100644
--- a/lisp/outline.el
+++ b/lisp/outline.el
@@ -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)))