Function: ebrowse-collapse-branch

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

Signature

(ebrowse-collapse-branch ARG)

Documentation

Fold (do no longer display) the subclasses of the current class.

(The class cursor is on.) With prefix ARG, fold all trees in the buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-collapse-branch (arg)
  "Fold (do no longer display) the subclasses of the current class.
\(The class cursor is on.)  With prefix ARG, fold all trees in the buffer."
  (interactive "P")
  (if arg
      (ebrowse-expand-all (not arg))
    (ebrowse-collapse-fn t)))