summaryrefslogtreecommitdiff
path: root/lisp/dired-aux.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2022-06-15 10:32:09 +0300
committerJuri Linkov <juri@linkov.net>2022-06-15 10:32:09 +0300
commit112b6b8e37b5df268ced98c4354802275a4da417 (patch)
tree3511a89405970163c8df6953c65e92dc85fd23e1 /lisp/dired-aux.el
parent7547e4e60eb57051bc6fd4e74f1643f2760bba65 (diff)
downloademacs-112b6b8e37b5df268ced98c4354802275a4da417.tar.gz
Update args of isearch-search-fun-in-text-property (bug#14013)
* lisp/isearch.el (isearch-search-fun-in-text-property): Swap signature args. * lisp/dired-aux.el (dired-isearch-search-filenames): Update the call.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r--lisp/dired-aux.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index d16aee0fa86..1b7088104d7 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -3208,7 +3208,7 @@ Intended to be added to `isearch-mode-hook'."
The returned function narrows the search to match the search string
only as part of a file name enclosed by the text property `dired-filename'.
It's intended to override the default search function."
- (isearch-search-fun-in-text-property 'dired-filename (funcall orig-fun)))
+ (isearch-search-fun-in-text-property (funcall orig-fun) 'dired-filename))
;;;###autoload
(defun dired-isearch-filenames ()