Function: allout-hide-current-entry
allout-hide-current-entry is an interactive and byte-compiled function
defined in allout.el.gz.
Signature
(allout-hide-current-entry)
Documentation
Hide the body directly following this heading.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-hide-current-entry ()
(defun allout-hide-current-entry ()
"Hide the body directly following this heading."
(interactive)
(allout-back-to-current-heading)
(save-excursion
(let ((inhibit-field-text-motion t))
(end-of-line))
(allout-flag-region (point)
(progn (allout-end-of-entry) (point))
t)))