Function: outline-hide-entry
outline-hide-entry is an interactive and byte-compiled function
defined in outline.el.gz.
Signature
(outline-hide-entry)
Documentation
Hide the body directly following this heading.
Key Bindings
Aliases
hide-entry (obsolete since 25.1)
Source Code
;; Defined in /usr/src/emacs/lisp/outline.el.gz
(defun outline-hide-entry ()
"Hide the body directly following this heading."
(interactive)
(save-excursion
(outline-back-to-heading)
(outline-end-of-heading)
(outline-flag-region (point) (progn (outline-next-preface) (point)) t)))