Function: testcover-next-mark

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

Signature

(testcover-next-mark)

Documentation

Move point to next line in current buffer that has a splotch.

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
    (error nil)))  ;Ignore "No such buffer" errors

(defun testcover-next-mark ()
  "Move point to next line in current buffer that has a splotch."
  (interactive)
  (goto-char (next-overlay-change (point)))
  (end-of-line))