Variable: edebug-after-instrumentation-function
edebug-after-instrumentation-function is a variable defined in
edebug.el.gz.
Value
identity
Documentation
Function to run on code after instrumentation for debugging.
The function is called with one argument, a FORM which has just been instrumented for Edebugging, and it should return either FORM or a replacement form to use in its place.
Probably introduced at or before Emacs version 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
;; Functions which may be used to extend Edebug's functionality. See
;; Testcover for an example.
(defvar edebug-after-instrumentation-function #'identity
"Function to run on code after instrumentation for debugging.
The function is called with one argument, a FORM which has just
been instrumented for Edebugging, and it should return either FORM
or a replacement form to use in its place.")