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