Function: dired-isearch-filter-filenames

dired-isearch-filter-filenames is a byte-compiled function defined in dired-aux.el.gz.

Signature

(dired-isearch-filter-filenames BEG END)

Documentation

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).

Source Code

;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
(defun dired-isearch-filter-filenames (beg end)
  "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))