Function: data-debug-next
data-debug-next is an interactive and byte-compiled function defined
in data-debug.el.gz.
Signature
(data-debug-next)
Documentation
Go to the next line in the Ddebug buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; Ddebug mode commands
;;
(defun data-debug-next ()
"Go to the next line in the Ddebug buffer."
(interactive)
(forward-line 1)
(beginning-of-line)
(skip-chars-forward "- *><[]" (point-at-eol)))