branch: elpa/macrostep
commit 99ac330b9ab4514b1d4edcbb2473b6a4230a497a
Author: joddie <[email protected]>
Commit: joddie <[email protected]>
Make inner macrolet definitions correctly shadow outer
---
macrostep.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/macrostep.el b/macrostep.el
index 808bc96..b920402 100644
--- a/macrostep.el
+++ b/macrostep.el
@@ -523,7 +523,7 @@ lambda expression that returns its expansion."
(macrostep-bindings-to-environment bindings))
(enclosing-environment
(macrostep-environment-at-point)))
- (append enclosing-environment binding-environment)))
+ (append binding-environment enclosing-environment)))
(`nil nil)
(_ (macrostep-environment-at-point))))))