aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-07-15 12:59:02 +0200
committerLars Ingebrigtsen2019-07-15 13:43:14 +0200
commitb808b9ea494409e32782fb306922545e1ac78147 (patch)
treef9478ccbeed3744aa959d8e77a45e5b16bef07f6
parentb34c6d2c9694ec300b92129dbf88fe012837dfe2 (diff)
downloademacs-b808b9ea494409e32782fb306922545e1ac78147.tar.gz
emacs-b808b9ea494409e32782fb306922545e1ac78147.zip
Clarify doc of isearch-wrap-function
* lisp/isearch.el (isearch-wrap-function): Doc clarification (bug#28388).
-rw-r--r--lisp/isearch.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 1aea539e735..97c75b2978b 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -193,8 +193,11 @@ If nil, use function `isearch-message'.")
193 193
194(defvar isearch-wrap-function nil 194(defvar isearch-wrap-function nil
195 "Function to call to wrap the search when search is failed. 195 "Function to call to wrap the search when search is failed.
196If nil, move point to the beginning of the buffer for a forward search, 196The function is called with no parameters, and would typically
197or to the end of the buffer for a backward search.") 197move point.
198
199If nil, move point to the beginning of the buffer for a forward
200search, or to the end of the buffer for a backward search.")
198 201
199(defvar isearch-push-state-function nil 202(defvar isearch-push-state-function nil
200 "Function to save a function restoring the mode-specific Isearch state 203 "Function to save a function restoring the mode-specific Isearch state