Function: org-show-empty-lines-in-parent

org-show-empty-lines-in-parent is a byte-compiled function defined in org.el.gz.

Signature

(org-show-empty-lines-in-parent)

Documentation

Move to the parent and re-show empty lines before visible headlines.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
;; FIXME: This function is unused.
(defun org-show-empty-lines-in-parent ()
  "Move to the parent and re-show empty lines before visible headlines."
  (save-excursion
    (let ((context (if (org-up-heading-safe) 'children 'overview)))
      (org-cycle-show-empty-lines context))))