mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(lib): cmd!: remove superfluous macro declarations
These don't apply to macros anyway.
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user