Function: outline-show-entry
outline-show-entry is an interactive and byte-compiled function
defined in outline.el.gz.
Signature
(outline-show-entry)
Documentation
Show the body directly following this heading.
Show the heading too, if it is currently invisible.
Key Bindings
Aliases
show-entry (obsolete since 25.1)
Source Code
;; Defined in /usr/src/emacs/lisp/outline.el.gz
(defun outline-show-entry ()
"Show the body directly following this heading.
Show the heading too, if it is currently invisible."
(interactive)
(save-excursion
(outline-back-to-heading t)
(outline-flag-region (1- (point))
(progn
(outline-next-preface)
(if (= 1 (- (point-max) (point)))
(point-max)
(point)))
nil)))