Function: allout-mark-topic
allout-mark-topic is an interactive and byte-compiled function defined
in allout.el.gz.
Signature
(allout-mark-topic)
Documentation
Put the region around topic currently containing point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ : Topics:
;;;_ > allout-mark-topic ()
(defun allout-mark-topic ()
"Put the region around topic currently containing point."
(interactive)
(let ((inhibit-field-text-motion t))
(beginning-of-line))
(allout-goto-prefix-doublechecked)
(push-mark)
(allout-end-of-current-subtree)
(exchange-point-and-mark))