Function: data-debug-insert-overlay-list
data-debug-insert-overlay-list is a byte-compiled function defined in
data-debug.el.gz.
Signature
(data-debug-insert-overlay-list OVERLAYLIST PREFIX)
Documentation
Insert all the parts of OVERLAYLIST.
PREFIX specifies what to insert at the start of each line.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; overlay list
;;
(defun data-debug-insert-overlay-list (overlaylist prefix)
"Insert all the parts of OVERLAYLIST.
PREFIX specifies what to insert at the start of each line."
(while overlaylist
(data-debug-insert-overlay-button (car overlaylist)
prefix
"")
(setq overlaylist (cdr overlaylist))))