1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* isearch.el (isearch-search-fun-function): Clarify the doc string

(bug#8101).
This commit is contained in:
Lars Magne Ingebrigtsen 2011-07-03 22:02:14 +02:00
parent a2d8969d89
commit c7f9804877
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
* isearch.el (isearch-search-fun-function): Clarify the doc string
(bug#8101).
2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
* textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert

View File

@ -2226,10 +2226,10 @@ If there is no completion possible, say so and continue searching."
;; Searching
(defvar isearch-search-fun-function nil
"Override `isearch-search-fun'.
This function should return the search function for Isearch to use.
It will call this function with three arguments
as if it were `search-forward'.")
"Overrides the default `isearch-search-fun' behaviour.
This variable should be a function, which will be called with no
arguments, and should return a function that takes the same three
arguments as `isearch-search-string' requires.")
(defun isearch-search-fun ()
"Return the function to use for the search.