From 989e7a0034a0c69b65d363d3206c814f0e9d930d Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 11 Nov 2024 20:17:01 -0500 Subject: [PATCH] fix(cli): decli-group!: indentation --- lisp/doom-cli.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/doom-cli.el b/lisp/doom-cli.el index 5096c1bb8..7eea56e5b 100644 --- a/lisp/doom-cli.el +++ b/lisp/doom-cli.el @@ -1791,6 +1791,7 @@ yet. They won't be included in command listings (by help documentation)." (defmacro defcli-group! (&rest body) "Declare common properties for any CLI commands defined in BODY." + (declare (indent 1)) (when (stringp (car body)) (push :group body)) `(let ((doom-cli--group-plist (copy-sequence doom-cli--group-plist)))