Function: data-debug-insert-overlay-list-from-point

data-debug-insert-overlay-list-from-point is a byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-insert-overlay-list-from-point POINT)

Documentation

Insert the overlay found at the overlay list button at POINT.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
(defun data-debug-insert-overlay-list-from-point (point)
  "Insert the overlay found at the overlay list button at POINT."
  (let ((overlaylist (get-text-property point 'ddebug))
	(indent (get-text-property point 'ddebug-indent))
	start
	)
    (end-of-line)
    (setq start (point))
    (forward-char 1)
    (data-debug-insert-overlay-list overlaylist
				    (concat (make-string indent ? )
					    "* "))
    (goto-char start)
    ))