From d249a8d3e07364776087df8f720e67007fb01b31 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sat, 28 Feb 2026 10:44:50 +0200 Subject: Remove unused compile-dir arg from configure-command format call The format call passed both project-root and compile-dir, but no project type's configure command uses two %s placeholders (meson uses one for the project root). The extra argument was silently ignored. --- projectile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projectile.el b/projectile.el index efd0bc0..5b2c84e 100644 --- a/projectile.el +++ b/projectile.el @@ -5311,7 +5311,7 @@ project of that type" projectile-project-configure-cmd (let ((cmd-format-string (projectile-default-configure-command (projectile-project-type)))) (when cmd-format-string - (format cmd-format-string (projectile-project-root) compile-dir))))) + (format cmd-format-string (projectile-project-root)))))) (defun projectile-compilation-buffer-name (compilation-mode) "Meant to be used for `compilation-buffer-name-function`. -- cgit v1.0