Function: occur-prev

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

Signature

(occur-prev &optional N)

Documentation

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

Key Bindings

Source Code

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