diff options
| author | Lars Ingebrigtsen | 2019-07-15 12:59:02 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-07-15 13:43:14 +0200 |
| commit | b808b9ea494409e32782fb306922545e1ac78147 (patch) | |
| tree | f9478ccbeed3744aa959d8e77a45e5b16bef07f6 | |
| parent | b34c6d2c9694ec300b92129dbf88fe012837dfe2 (diff) | |
| download | emacs-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.el | 7 |
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. |
| 196 | If nil, move point to the beginning of the buffer for a forward search, | 196 | The function is called with no parameters, and would typically |
| 197 | or to the end of the buffer for a backward search.") | 197 | move point. |
| 198 | |||
| 199 | If nil, move point to the beginning of the buffer for a forward | ||
| 200 | search, 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 |