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