Function: testcover-mark-all

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

Signature

(testcover-mark-all &optional BUFFER)

Documentation

Mark all forms in BUFFER that did not get completely tested during coverage tests. This function creates many overlays.

View in manual

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/testcover.el.gz
(defun testcover-mark-all (&optional buffer)
  "Mark all forms in BUFFER that did not get completely tested during
coverage tests.  This function creates many overlays."
  (interactive "bMark forms in buffer: ")
  (if buffer
      (switch-to-buffer buffer))
  (goto-char 1)
  (dolist (x edebug-form-data)
    (if (get (car x) 'edebug)
	(testcover-mark (car x)))))