Function: srecode-adebug-maps
srecode-adebug-maps is an interactive and byte-compiled function
defined in map.el.gz.
Signature
(srecode-adebug-maps)
Documentation
Run ADEBUG on the output of srecode-get-maps.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/map.el.gz
(defun srecode-adebug-maps ()
"Run ADEBUG on the output of `srecode-get-maps'."
(interactive)
(require 'data-debug)
(let ((start (current-time))
(p (srecode-get-maps t)) ;; Time the reset.
)
(message "Updating the map took %.2f seconds."
(semantic-elapsed-time start nil))
(data-debug-new-buffer "*SRECODE ADEBUG*")
(data-debug-insert-stuff-list p "*")))