From 0048dd0da0fdce9a2687e19bfef0c0299051a067 Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Wed, 25 Mar 2026 16:06:16 +0100 Subject: [PATCH] Give compile-command a :group again Like the commit of 2022-07-31 "Fix further package.el loaddefs byte-compile warnings" this pacifies the warning that compile-command fails to specify a containing group when byte-compiling loaddefs.el (bug#80648). * lisp/progmodes/compile.el (compile-command): Restore explicit custom :group on autoloaded user option. --- lisp/progmodes/compile.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index c0a734ae818..07974906a90 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -991,6 +991,7 @@ You might also use mode hooks to specify it in certain modes, like this: (file-name-sans-extension buffer-file-name)))))))) It's often useful to leave a space at the end of the value." + :group 'compilation :initialize #'custom-initialize-delay :type 'string) ;;;###autoload(put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (if (boundp 'compilation-read-command) compilation-read-command t))))