Function: edebug-form-data-symbol

edebug-form-data-symbol is a byte-compiled function defined in edebug.el.gz.

Signature

(edebug-form-data-symbol)

Documentation

Return the edebug data symbol of the form where point is in.

If point is not inside an edebuggable form, signal an error.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
;; Also need to find all contained entries,
;; and find an entry given a symbol, which should be just assq.

(defun edebug-form-data-symbol ()
  "Return the edebug data symbol of the form where point is in.
If point is not inside an edebuggable form, signal an error."
  (or (edebug--form-data-name (edebug-get-form-data-entry (point)))
      (error "Not inside instrumented form")))