branch: elpa/projectile
commit 622bf79dc5eb28c1e612cd6b2473e3261ec1fb01
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Fix misplaced paren in projectile-project-buffers-other-buffer
The NORECORD and FORCE-SAME-WINDOW arguments to switch-to-buffer
were outside the function call, so they were never actually passed.
---
projectile.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/projectile.el b/projectile.el
index bbcddcfa60..0fadc861c8 100644
--- a/projectile.el
+++ b/projectile.el
@@ -1912,7 +1912,7 @@ choices."
"Switch to the most recently selected buffer project buffer.
Only buffers not visible in windows are returned."
(interactive)
- (switch-to-buffer (car (projectile-project-buffers-non-visible))) nil t)
+ (switch-to-buffer (car (projectile-project-buffers-non-visible)) nil t))
(defun projectile-project-buffers-non-visible ()
"Get a list of non visible project buffers."