From: Dmitry Gutov Date: Mon, 14 Nov 2022 00:18:56 +0000 (+0200) Subject: Hardcode "-name" instead of using find-name-arg X-Git-Tag: emacs-29.0.90~1616^2~165 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c0474ca21dd76cafbd1a04fd32d4a0bd42de6351;p=emacs.git Hardcode "-name" instead of using find-name-arg * lisp/progmodes/project.el (project--files-in-directory): Hardcode "-name" instead of using find-name-arg (bug#59023). --- diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index d2ce684c1ba..ed26872ae77 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -1,7 +1,7 @@ ;;; project.el --- Operations on the current project -*- lexical-binding: t; -*- ;; Copyright (C) 2015-2022 Free Software Foundation, Inc. -;; Version: 0.8.2 +;; Version: 0.8.3 ;; Package-Requires: ((emacs "26.1") (xref "1.4.0")) ;; This is a GNU ELPA :core package. Avoid using functionality that @@ -296,7 +296,6 @@ to find the list of ignores for each directory." (defun project--files-in-directory (dir ignores &optional files) (require 'find-dired) (require 'xref) - (defvar find-name-arg) (let* ((default-directory dir) ;; Make sure ~/ etc. in local directory name is ;; expanded and not left for the shell command @@ -308,11 +307,11 @@ to find the list of ignores for each directory." (xref--find-ignores-arguments ignores "./") (if files (concat (shell-quote-argument "(") - " " find-name-arg " " + " -name " (mapconcat #'shell-quote-argument (split-string files) - (concat " -o " find-name-arg " ")) + (concat " -o -name ")) " " (shell-quote-argument ")")) "")))