Function: occur-next

occur-next is an interactive and byte-compiled function defined in replace.el.gz.

Signature

(occur-next &optional N)

Documentation

Move to the Nth (default 1) next match in an Occur mode buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/replace.el.gz
(defun occur-next (&optional n)
  "Move to the Nth (default 1) next match in an Occur mode buffer."
  (interactive "p")
  (occur-find-match n #'next-single-property-change "No more matches"))