emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/projectile 2b21dd0906: [Fix #1808] Fix the filenames when


From: ELPA Syncer
Subject: [nongnu] elpa/projectile 2b21dd0906: [Fix #1808] Fix the filenames when using project.el
Date: Sat, 29 Oct 2022 01:59:07 -0400 (EDT)

branch: elpa/projectile
commit 2b21dd09062df4adb4114d167e3d27de1ef34919
Author: Bozhidar Batsov <bozhidar@batsov.dev>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    [Fix #1808] Fix the filenames when using project.el
    
    I had flipped the order of concat's arguments by accident.
---
 projectile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/projectile.el b/projectile.el
index 14cb830a46..ac326e8ea8 100644
--- a/projectile.el
+++ b/projectile.el
@@ -6025,7 +6025,7 @@ Otherwise behave as if called interactively.
     ;; and project.el expects them to be absolute.
     ;; FIXME: That's probably going to be very slow in large projects.
     (mapcar (lambda (f)
-              (concat f root))
+              (concat root f))
             (projectile-project-files root))))
 
 (defun project-projectile (dir)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]