aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2017-11-10 12:12:46 +0200
committerEli Zaretskii2017-11-10 12:12:46 +0200
commitc52a2aa8f363f7f7a32119948ed73b7e4a0772ef (patch)
tree00ab86791447dd2be44c410e3851096cd9f75438
parente592b924824db7528b3e7764fde5c4df383b6ee8 (diff)
downloademacs-c52a2aa8f363f7f7a32119948ed73b7e4a0772ef.tar.gz
emacs-c52a2aa8f363f7f7a32119948ed73b7e4a0772ef.zip
Improve the doc string of 'dired-isearch-filter-filenames'
* lisp/dired-aux.el (dired-isearch-filter-filenames): Doc fix. (Bug#29215)
-rw-r--r--lisp/dired-aux.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index 03639f6b507..8fb2c1ff948 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -2748,9 +2748,9 @@ Intended to be added to `isearch-mode-hook'."
2748 (remove-hook 'isearch-mode-end-hook 'dired-isearch-filenames-end t)) 2748 (remove-hook 'isearch-mode-end-hook 'dired-isearch-filenames-end t))
2749 2749
2750(defun dired-isearch-filter-filenames (beg end) 2750(defun dired-isearch-filter-filenames (beg end)
2751 "Test whether the current search hit is a file name. 2751 "Test whether some part of the current search match is inside a file name.
2752Return non-nil if the text from BEG to END is part of a file 2752This function returns non-nil if some part of the text between BEG and END
2753name (has the text property `dired-filename')." 2753is part of a file name (i.e., has the text property `dired-filename')."
2754 (text-property-not-all (min beg end) (max beg end) 2754 (text-property-not-all (min beg end) (max beg end)
2755 'dired-filename nil)) 2755 'dired-filename nil))
2756 2756