]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Bug#34221
authorFelicián Németh <felician.nemeth@gmail.com>
Sat, 2 Feb 2019 12:22:53 +0000 (13:22 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 2 Feb 2019 12:22:53 +0000 (13:22 +0100)
* lisp/progmodes/project.el (project--files-in-directory):
Support remote files.  (Bug#34221)

lisp/progmodes/project.el

index 3603e751fee831fab359288e573bae081f54f431..815cc7cd3d369d4391266ed013b36b2e2dff049b 100644 (file)
@@ -189,9 +189,11 @@ to find the list of ignores for each directory."
 (defun project--files-in-directory (dir ignores &optional files)
   (require 'find-dired)
   (defvar find-name-arg)
-  (let ((command (format "%s %s %s -type f %s -print0"
+  (let ((default-directory dir)
+        (remote-id (file-remote-p dir))
+        (command (format "%s %s %s -type f %s -print0"
                          find-program
-                         dir
+                         (file-local-name dir)
                          (xref--find-ignores-arguments
                           ignores
                           (expand-file-name dir))
@@ -205,7 +207,8 @@ to find the list of ignores for each directory."
                                      " "
                                      (shell-quote-argument ")"))"")
                          )))
-    (split-string (shell-command-to-string command) "\0" t)))
+    (mapcar (lambda (file) (concat remote-id file))
+            (split-string (shell-command-to-string command) "\0" t))))
 
 (defgroup project-vc nil
   "Project implementation using the VC package."