From 6cfbeaa4f6fc69194056abe45411928261b86ca6 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 29 Jul 2018 02:29:26 +0200 Subject: [PATCH] Fix (cl-)?defmacro autodefs They were formly inserted with (cl-)?defmacro replaced with nil, otherwise. --- core/core-cli.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core-cli.el b/core/core-cli.el index 13cf7cfe6..d846db0bd 100644 --- a/core/core-cli.el +++ b/core/core-cli.el @@ -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)