Function: data-debug-insert-ring-contents

data-debug-insert-ring-contents is a byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-insert-ring-contents RING PREFIX)

Documentation

Insert all the parts of RING.

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

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; Rings
;;
;; A ring (like kill-ring, or whatever.)
(defun data-debug-insert-ring-contents (ring prefix)
  "Insert all the parts of RING.
PREFIX specifies what to insert at the start of each line."
  (let ((len (ring-length ring))
	(idx 0)
	)
    (while (< idx len)
      (data-debug-insert-thing (ring-ref ring idx) prefix "")
      (setq idx (1+ idx))
      )))