Function: reb-next-match

reb-next-match is an interactive and byte-compiled function defined in re-builder.el.gz.

Signature

(reb-next-match)

Documentation

Go to next match in the RE Builder target window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/re-builder.el.gz
(defun reb-next-match ()
  "Go to next match in the RE Builder target window."
  (interactive)
  (reb-assert-buffer-in-window)
  (with-selected-window reb-target-window
    (if (not (re-search-forward reb-regexp (point-max) t))
	(message "No more matches")
      (reb-show-subexp
       (or (and reb-subexp-mode reb-subexp-displayed) 0)
       t))))