branch: elpa/macrostep
commit 7b2c1f375c0ae102f53eb20f897b9f64a0d24322
Author: Fice T <[email protected]>
Commit: Fice T <[email protected]>
Load all autoloaded macros
Autoload objects with the 5th element being `t' are also macros.
---
macrostep.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/macrostep.el b/macrostep.el
index 69f6873..1b8795e 100644
--- a/macrostep.el
+++ b/macrostep.el
@@ -816,7 +816,7 @@ value of DEFINITION in the result will be nil."
((macro)
`(macro . ,(cdr fun)))
((autoload)
- (when (eq (nth 4 fun) 'macro)
+ (when (memq (nth 4 fun) '(macro t))
(if inhibit-autoload
`(macro . nil)
(load-library (nth 1 fun))