Function: data-debug-insert-buffer-list

data-debug-insert-buffer-list is a byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-insert-buffer-list BUFFERLIST PREFIX)

Documentation

Insert all the parts of BUFFERLIST.

PREFIX specifies what to insert at the start of each line.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; buffer list
;;
(defun data-debug-insert-buffer-list (bufferlist prefix)
  "Insert all the parts of BUFFERLIST.
PREFIX specifies what to insert at the start of each line."
  (while bufferlist
    (data-debug-insert-buffer-button (car bufferlist)
				      prefix
				      "")
    (setq bufferlist (cdr bufferlist))))