diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-04 20:54:26 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-04 20:54:26 +0000 |
commit | 04779ccc5343cacb1f9cee1f3121922a6abe6f71 (patch) | |
tree | d44b88b2056d7c1aca5eea2b2c873b99fa0054c8 /lisp/outline.el | |
parent | 89df36c02993b0d5f28634ce1e1315503c199967 (diff) | |
download | emacs-04779ccc5343cacb1f9cee1f3121922a6abe6f71.tar.gz |
(outline-mark-subtree): Activate the mark.
Diffstat (limited to 'lisp/outline.el')
-rw-r--r-- | lisp/outline.el | 2 |
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))) |