Fix (cl-)?defmacro autodefs
They were formly inserted with (cl-)?defmacro replaced with nil, otherwise.
This commit is contained in:
parent
ea175180ef
commit
6cfbeaa4f6
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue