Function: senator-nonincremental-re-search-forward

senator-nonincremental-re-search-forward is an interactive and byte-compiled function defined in senator.el.gz.

Signature

(senator-nonincremental-re-search-forward STRING)

Documentation

Search for the regular expression STRING nonincrementally.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/senator.el.gz
(defun senator-nonincremental-re-search-forward (string)
  "Search for the regular expression STRING nonincrementally."
  (interactive "sSemantic search for regexp: ")
  (setq senator-last-search-type 'regexp)
  (if (equal string "")
      (senator-re-search-forward (car regexp-search-ring))
    (isearch-update-ring string t)
    (senator-re-search-forward string)))