branch: elpa/projectile
commit 2b21dd09062df4adb4114d167e3d27de1ef34919
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
[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)