Function: edebug-match-def-body
edebug-match-def-body is a byte-compiled function defined in
edebug.el.gz.
Signature
(edebug-match-def-body CURSOR)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-match-def-body (cursor)
;; Like body but body is wrapped in edebug-enter form.
;; The body is assumed to be executing inside of the function context.
;; Not to be used otherwise.
(let* ((edebug-inside-func t)
(forms (edebug-forms cursor)))
;; If there's no form, there's nothing to wrap!
;; This happens to handle bug#20281, tho maybe a better fix would be to
;; improve the `defun' spec.
(when forms
(list (edebug-make-enter-wrapper forms)))))