diff options
| author | Bozhidar Batsov <bozhidar@batsov.dev> | 2026-02-28 10:44:50 +0200 |
|---|---|---|
| committer | Bozhidar Batsov <bozhidar@batsov.dev> | 2026-02-28 10:51:37 +0200 |
| commit | d249a8d3e07364776087df8f720e67007fb01b31 (patch) | |
| tree | 5431cd4a0cac089d98f81d2139408d8a02d577b6 | |
| parent | 71526c5cab539ac29ad0728149a452faf1ad94ee (diff) | |
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.
| -rw-r--r-- | projectile.el | 2 |
1 files changed, 1 insertions, 1 deletions
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`. |
