Function: data-debug-insert-property-list
data-debug-insert-property-list is a byte-compiled function defined in
data-debug.el.gz.
Signature
(data-debug-insert-property-list PROPLIST PREFIX &optional PARENT)
Documentation
Insert the property list PROPLIST.
Each line starts with PREFIX. The attributes belong to the tag PARENT.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; GENERIC STUFF
;;
(defun data-debug-insert-property-list (proplist prefix &optional parent)
"Insert the property list PROPLIST.
Each line starts with PREFIX.
The attributes belong to the tag PARENT."
(while proplist
(let ((pretext (concat (symbol-name (car proplist)) " : ")))
(data-debug-insert-thing (car (cdr proplist))
prefix
pretext
parent))
(setq proplist (cdr (cdr proplist)))))