Function: data-debug-insert-overlay-props

data-debug-insert-overlay-props is a byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-insert-overlay-props OVERLAY PREFIX)

Documentation

Insert all the parts of OVERLAY.

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

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; overlays
;;
(defun data-debug-insert-overlay-props (overlay prefix)
  "Insert all the parts of OVERLAY.
PREFIX specifies what to insert at the start of each line."
  (let ((attrprefix (concat (make-string (length prefix) ? ) "# "))
	(proplist (overlay-properties overlay)))
    (data-debug-insert-property-list
     proplist attrprefix)
    )
  )