diff options
| author | Lars Ingebrigtsen | 2016-05-01 00:16:42 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-05-01 19:27:16 +0200 |
| commit | 9f27bcf21a39a06f994dcc16da992dcef978161e (patch) | |
| tree | 1de2f1eeb8594e14fc83f70e44483aae9fd35b26 | |
| parent | 78ae8056d0062d990e160326f19ad20d1eb7cc3b (diff) | |
| download | emacs-9f27bcf21a39a06f994dcc16da992dcef978161e.tar.gz emacs-9f27bcf21a39a06f994dcc16da992dcef978161e.zip | |
isearch-search-fun-function doc tweak
* lisp/isearch.el (isearch-search-fun-function): Mention what
the STRING parameter is (bug#21552).
(cherry picked from commit cafc2a5940cdc523cfea6dcf1cf540f48367c62a)
| -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 218c18a666e..b2223e7b308 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -2662,8 +2662,9 @@ the word mode." | |||
| 2662 | "Non-default value overrides the behavior of `isearch-search-fun-default'. | 2662 | "Non-default value overrides the behavior of `isearch-search-fun-default'. |
| 2663 | This variable's value should be a function, which will be called | 2663 | This variable's value should be a function, which will be called |
| 2664 | with no arguments, and should return a function that takes three | 2664 | with no arguments, and should return a function that takes three |
| 2665 | arguments: STRING, BOUND, and NOERROR. See `re-search-forward' | 2665 | arguments: STRING, BOUND, and NOERROR. STRING is the string to |
| 2666 | for the meaning of BOUND and NOERROR arguments. | 2666 | be searched for. See `re-search-forward' for the meaning of |
| 2667 | BOUND and NOERROR arguments. | ||
| 2667 | 2668 | ||
| 2668 | This returned function will be used by `isearch-search-string' to | 2669 | This returned function will be used by `isearch-search-string' to |
| 2669 | search for the first occurrence of STRING.") | 2670 | search for the first occurrence of STRING.") |