Function: ebrowse-expand-branch

ebrowse-expand-branch is an interactive and byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-expand-branch ARG)

Documentation

Expand a sub-tree that has been previously collapsed.

With prefix ARG, expand all sub-trees.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
;;; Expanding/ collapsing tree branches

(defun ebrowse-expand-branch (arg)
  "Expand a sub-tree that has been previously collapsed.
With prefix ARG, expand all sub-trees."
  (interactive "P")
  (if arg
      (ebrowse-expand-all arg)
    (ebrowse-collapse-fn nil)))