We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6f63a2 commit 4ea27c3Copy full SHA for 4ea27c3
src/clj/cljs/core.clj
@@ -1991,7 +1991,7 @@
1991
"Argument to macroexpand must be quoted")
1992
(core/let [form (second quoted)
1993
env &env]
1994
- (core/loop [form' (ana/macroexpand-1 env form)]
+ (core/loop [form form form' (ana/macroexpand-1 env form)]
1995
(core/if-not (core/identical? form form')
1996
- (recur (ana/macroexpand-1 env form'))
1997
- form'))))
+ (recur form' (ana/macroexpand-1 env form'))
+ `(quote ~form')))))
0 commit comments