aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2016-05-01 00:16:42 +0200
committerLars Ingebrigtsen2016-05-01 19:27:16 +0200
commit9f27bcf21a39a06f994dcc16da992dcef978161e (patch)
tree1de2f1eeb8594e14fc83f70e44483aae9fd35b26
parent78ae8056d0062d990e160326f19ad20d1eb7cc3b (diff)
downloademacs-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.el5
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'.
2663This variable's value should be a function, which will be called 2663This variable's value should be a function, which will be called
2664with no arguments, and should return a function that takes three 2664with no arguments, and should return a function that takes three
2665arguments: STRING, BOUND, and NOERROR. See `re-search-forward' 2665arguments: STRING, BOUND, and NOERROR. STRING is the string to
2666for the meaning of BOUND and NOERROR arguments. 2666be searched for. See `re-search-forward' for the meaning of
2667BOUND and NOERROR arguments.
2667 2668
2668This returned function will be used by `isearch-search-string' to 2669This returned function will be used by `isearch-search-string' to
2669search for the first occurrence of STRING.") 2670search for the first occurrence of STRING.")