]> git.eshelyaron.com Git - emacs.git/commitdiff
(multi-isearch-next-buffer-function): Doc fix.
authorJuri Linkov <juri@jurta.org>
Sun, 28 Dec 2008 23:45:53 +0000 (23:45 +0000)
committerJuri Linkov <juri@jurta.org>
Sun, 28 Dec 2008 23:45:53 +0000 (23:45 +0000)
(multi-isearch-search-fun): Set the second arg WRAP to nil explicitly.

lisp/misearch.el

index 6a30d7242bd557fb6cca877f8d33c2ebc78acedc..e77a0b987c61f88741e1d30d1a889a67c9d4b8bb 100644 (file)
@@ -66,14 +66,19 @@ at a failing search, the search goes
 to the next buffer in the series and continues searching for the
 next occurrence.
 
+This function should return the next buffer (it doesn't need to switch
+to it), or nil if it can't find the next buffer (when it reaches the
+end of the search space).
+
 The first argument of this function is the current buffer where the
 search is currently searching.  It defines the base buffer relative to
 which this function should find the next buffer.  When the isearch
 direction is backward (when `isearch-forward' is nil), this function
-should return the previous buffer to search.  If the second argument of
-this function WRAP is non-nil, then it should return the first buffer
-in the series; and for the backward search, it should return the last
-buffer in the series.")
+should return the previous buffer to search.
+
+If the second argument of this function WRAP is non-nil, then it
+should return the first buffer in the series; and for the backward
+search, it should return the last buffer in the series.")
 
 ;;;###autoload
 (defvar multi-isearch-next-buffer-current-function nil
@@ -153,7 +158,7 @@ Intended to be added to `isearch-mode-hook'."
                   (while (not found)
                     ;; Find the next buffer to search
                     (setq buffer (funcall multi-isearch-next-buffer-current-function
-                                          buffer))
+                                          buffer nil))
                     (with-current-buffer buffer
                       (goto-char (if isearch-forward (point-min) (point-max)))
                       (setq isearch-barrier (point) isearch-opoint (point))
@@ -167,6 +172,7 @@ Intended to be added to `isearch-mode-hook'."
                   ;; Return point of the new search result
                   found)
               ;; Return nil when multi-isearch-next-buffer-current-function fails
+              ;; (`with-current-buffer' raises an error for nil returned from it).
               (error nil))
           (signal 'search-failed (list string "Repeat for next buffer"))))))))