aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Vaucher <philippe.vaucher@stvs.com>2018-12-17 11:25:37 +0100
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2018-12-18 22:23:27 +0200
commitd625ecb09e3a9fb319740686402197bdf6fc109b (patch)
tree625f285f998ef12a8638394e4dbddf080d534fec
parent1ac0dedfba9d71b0b951929c3cfdbad2003a061b (diff)
Fix bug in compilation-find-file-projectile-find-compilation-buffer
-rw-r--r--projectile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/projectile.el b/projectile.el
index 3598a60..bacf92c 100644
--- a/projectile.el
+++ b/projectile.el
@@ -3603,7 +3603,7 @@ fallback to the original function."
(when new-filename
(setq filename new-filename))))
- (funcall #'orig-fun marker filename directory formats))
+ (apply orig-fun `(,marker ,filename ,directory ,@formats)))
(defun projectile-open-projects ()
"Return a list of all open projects.