]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve the doc string of 'dired-isearch-filter-filenames'
authorEli Zaretskii <eliz@gnu.org>
Fri, 10 Nov 2017 10:12:46 +0000 (12:12 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 10 Nov 2017 10:12:46 +0000 (12:12 +0200)
* lisp/dired-aux.el (dired-isearch-filter-filenames): Doc fix.
(Bug#29215)

lisp/dired-aux.el

index 03639f6b5077d3d3c2d8f0e27402519bad323fbe..8fb2c1ff9483da7f7271164354d00dccc8d2fac8 100644 (file)
@@ -2748,9 +2748,9 @@ Intended to be added to `isearch-mode-hook'."
   (remove-hook 'isearch-mode-end-hook 'dired-isearch-filenames-end t))
 
 (defun dired-isearch-filter-filenames (beg end)
-  "Test whether the current search hit is a file name.
-Return non-nil if the text from BEG to END is part of a file
-name (has the text property `dired-filename')."
+  "Test whether some part of the current search match is inside a file name.
+This function returns non-nil if some part of the text between BEG and END
+is part of a file name (i.e., has the text property `dired-filename')."
   (text-property-not-all (min beg end) (max beg end)
                         'dired-filename nil))