diff options
| author | Lars Ingebrigtsen | 2016-05-01 00:16:42 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-05-01 00:16:42 +0200 |
| commit | cafc2a5940cdc523cfea6dcf1cf540f48367c62a (patch) | |
| tree | cfe9cfb2a3654c45e7e395f26600bd88643808a6 | |
| parent | 4b7bb8f596550628eaa83b82c0f7eabe59a84964 (diff) | |
| download | emacs-cafc2a5940cdc523cfea6dcf1cf540f48367c62a.tar.gz emacs-cafc2a5940cdc523cfea6dcf1cf540f48367c62a.zip | |
isearch-search-fun-function doc tweak
* lisp/isearch.el (isearch-search-fun-function): Mention what
the STRING parameter is (bug#21552).
| -rw-r--r-- | lisp/isearch.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 48354d39d48..5257a23223f 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -2665,8 +2665,9 @@ the word mode." | |||
| 2665 | "Non-default value overrides the behavior of `isearch-search-fun-default'. | 2665 | "Non-default value overrides the behavior of `isearch-search-fun-default'. |
| 2666 | This variable's value should be a function, which will be called | 2666 | This variable's value should be a function, which will be called |
| 2667 | with no arguments, and should return a function that takes three | 2667 | with no arguments, and should return a function that takes three |
| 2668 | arguments: STRING, BOUND, and NOERROR. See `re-search-forward' | 2668 | arguments: STRING, BOUND, and NOERROR. STRING is the string to |
| 2669 | for the meaning of BOUND and NOERROR arguments. | 2669 | be searched for. See `re-search-forward' for the meaning of |
| 2670 | BOUND and NOERROR arguments. | ||
| 2670 | 2671 | ||
| 2671 | This returned function will be used by `isearch-search-string' to | 2672 | This returned function will be used by `isearch-search-string' to |
| 2672 | search for the first occurrence of STRING.") | 2673 | search for the first occurrence of STRING.") |