Variable: isearch-wrap-function

isearch-wrap-function is a variable defined in isearch.el.gz.

Value

nil

Documentation

Function to call to wrap the search when search is failed.

The function is called with no parameters, and would typically move point.

If nil, move point to the beginning of the buffer for a forward search, or to the end of the buffer for a backward search.

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
(defvar isearch-wrap-function nil
  "Function to call to wrap the search when search is failed.
The function is called with no parameters, and would typically
move point.

If nil, move point to the beginning of the buffer for a forward
search, or to the end of the buffer for a backward search.")