Function: testcover-end

testcover-end is an interactive and byte-compiled function defined in testcover.el.gz.

Signature

(testcover-end FILENAME)

Documentation

Turn off instrumentation of all macros and functions in FILENAME.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/testcover.el.gz
(defun testcover-end (filename)
  "Turn off instrumentation of all macros and functions in FILENAME."
  (interactive "fStop covering file: ")
  (let ((buf (find-file-noselect filename)))
    (eval-buffer buf)))