mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix (cl-)?defmacro autodefs
They were formly inserted with (cl-)?defmacro replaced with nil, otherwise.
This commit is contained in:
@ -477,7 +477,8 @@ even if it doesn't need reloading!"
|
||||
(condition-case-unless-debug e
|
||||
(append (list (pcase type
|
||||
(`defun 'defmacro)
|
||||
(`cl-defun `cl-defmacro))
|
||||
(`cl-defun `cl-defmacro)
|
||||
(_ type))
|
||||
name arglist docstring)
|
||||
(cl-loop for arg in arglist
|
||||
if (and (symbolp arg)
|
||||
|
Reference in New Issue
Block a user