Function: outline-flag-subtree
outline-flag-subtree is a byte-compiled function defined in
outline.el.gz.
Signature
(outline-flag-subtree FLAG)
Documentation
Assign FLAG to the current subtree.
Source Code
;; Defined in /usr/src/emacs/lisp/outline.el.gz
(defun outline-flag-subtree (flag)
"Assign FLAG to the current subtree."
(save-excursion
(outline-back-to-heading)
(outline-end-of-heading)
(outline-flag-region (point)
(progn (outline-end-of-subtree) (point))
flag)))