Function: data-debug-insert-stuff-vector

data-debug-insert-stuff-vector is a byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-insert-stuff-vector STUFFVECTOR PREFIX)

Documentation

Insert all the parts of STUFFVECTOR.

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

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; vector of stuff
;;
;; just a vector.  random stuff inside.
(defun data-debug-insert-stuff-vector (stuffvector prefix)
  "Insert all the parts of STUFFVECTOR.
PREFIX specifies what to insert at the start of each line."
  (let ((idx 0))
    (while (< idx (length stuffvector))
      (data-debug-insert-thing
       ;; Some vectors may put a value in the CDR
       (aref stuffvector idx)
       prefix
       "")
      (setq idx (1+ idx)))))