Function: testcover-this-defun

testcover-this-defun is an autoloaded, interactive and byte-compiled function defined in testcover.el.gz.

Signature

(testcover-this-defun)

Documentation

Start coverage on function under point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/testcover.el.gz
;;;###autoload
(defun testcover-this-defun ()
  "Start coverage on function under point."
  (interactive)
  (let ((edebug-all-defs t)
        (edebug-after-instrumentation-function #'testcover-after-instrumentation)
        (edebug-new-definition-function #'testcover-init-definition))
    (eval-defun nil)))