Function: data-debug-next-expando

data-debug-next-expando is an interactive and byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-next-expando)

Documentation

Go to the next line in the Ddebug buffer.

Contract the current line (if open) and expand the line we move to.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
(defun data-debug-next-expando ()
  "Go to the next line in the Ddebug buffer.
Contract the current line (if open) and expand the line
we move to."
  (interactive)
  (data-debug-contract-current-line)
  (data-debug-next)
  (data-debug-expand-current-line)
  )