Function: org-fold-show-branches-buffer

org-fold-show-branches-buffer is a byte-compiled function defined in org-fold.el.gz.

Signature

(org-fold-show-branches-buffer)

Documentation

Show all branches in the buffer.

Aliases

org-show-branches-buffer (obsolete since 9.6)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-fold.el.gz
(defun org-fold-show-branches-buffer ()
  "Show all branches in the buffer."
  (org-fold-flag-above-first-heading)
  (org-fold-hide-sublevels 1)
  (unless (eobp)
    (org-fold-show-branches)
    (while (outline-get-next-sibling)
      (org-fold-show-branches)))
  (goto-char (point-min)))