Function: data-debug-expand-or-contract

data-debug-expand-or-contract is an interactive and byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-expand-or-contract)

Documentation

Expand or contract anything at the current point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
(defun data-debug-expand-or-contract ()
  "Expand or contract anything at the current point."
  (interactive)
  (if (and (data-debug-line-expandable-p)
	   (data-debug-current-line-expanded-p))
      (data-debug-contract-current-line)
    (data-debug-expand-current-line))
  (skip-chars-forward "- *><[]" (line-end-position)))