From c2dfbd2e2e811d8e1b658596da0299c00c4ded17 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Fri, 8 Dec 2023 22:37:06 +0000 Subject: [PATCH] ; * lisp/progmodes/project.el (project-any-command): Fix last change --- lisp/progmodes/project.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index 7789243cb00..cc473a12baf 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -1862,7 +1862,7 @@ which will take priority over the global ones." (when command (if (when (symbolp command) (or (string-prefix-p "project-" (symbol-name command)) - (get command 'project-command))) + (get command 'project-related))) (let ((project-current-directory-override root)) (call-interactively command)) (let ((default-directory root)) -- 2.39.2