branch: elpa/macrostep
commit 2d216bac2165e1b8c92df115223de7bc33804078
Merge: e537612 7b2c1f3
Author: Jon Oddie <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #19 from fice-t/autoload
    
    Load all autoloaded 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))

Reply via email to