Function: semantic-adebug-mrub
semantic-adebug-mrub is an interactive and byte-compiled function
defined in mru-bookmark.el.gz.
Signature
(semantic-adebug-mrub)
Documentation
Display a list of items in the MRU bookmarks list.
Useful for debugging mrub problems.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/mru-bookmark.el.gz
;;; Debugging
;;
(defun semantic-adebug-mrub ()
"Display a list of items in the MRU bookmarks list.
Useful for debugging mrub problems."
(interactive)
(require 'eieio-datadebug)
(let* ((out semantic-mru-bookmark-ring))
(data-debug-new-buffer "*TAG RING ADEBUG*")
(data-debug-insert-object-slots out "]")
))