Function: isearch-ring-advance

isearch-ring-advance is an interactive and byte-compiled function defined in isearch.el.gz.

Signature

(isearch-ring-advance)

Documentation

Advance to the next search string in the ring.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defun isearch-ring-advance ()
  "Advance to the next search string in the ring."
  ;; This could be more general to handle a prefix arg, but who would use it.
  (interactive)
  (isearch-ring-adjust 'advance))