From ea616ebd5bcc98d342ab89bbe02f99dd8c0cd673 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 3 Dec 2024 17:45:34 -0500 Subject: [PATCH] fix(lib): cmd!: remove superfluous macro declarations These don't apply to macros anyway. --- lisp/doom-lib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/doom-lib.el b/lisp/doom-lib.el index 8874a9edb..5dea2eb29 100644 --- a/lisp/doom-lib.el +++ b/lisp/doom-lib.el @@ -632,7 +632,7 @@ minus font-locking and the outer function call, plus some minor optimizations." "Returns (lambda () (interactive) ,@body) A factory for quickly producing interaction commands, particularly for keybinds or aliases." - (declare (doc-string 1) (pure t) (side-effect-free t)) + (declare (doc-string 1)) `(lambda (&rest _) (interactive) ,@body)) (defmacro cmd!! (command &optional prefix-arg &rest args)