Function: semantic-symref-list-contract-all

semantic-symref-list-contract-all is an interactive and byte-compiled function defined in list.el.gz.

Signature

(semantic-symref-list-contract-all)

Documentation

Expand all the nodes in the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/symref/list.el.gz
(defun semantic-symref-list-contract-all ()
  "Expand all the nodes in the current buffer."
  (interactive)
  (let ((start (make-marker)))
    (move-marker start (point))
    (goto-char (point-min))
    (while (re-search-forward "\\[[-]\\]" nil t)
      (semantic-symref-list-toggle-showing))
    ;; Restore position
    (goto-char start)))