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.
2 parents fdbed1a + 1a5f4f7 commit f310c7cCopy full SHA for f310c7c
src/utils.jl
@@ -31,7 +31,9 @@ expressions are preserverd.
31
See also: [`rmlines`](@ref)
32
"""
33
macro q(ex)
34
- Expr(:quote, striplines(ex))
+ # use esc here, so we don't rely on https://github.com/JuliaLang/julia/issues/37540 for
35
+ # interpolation to work
36
+ esc(Expr(:quote, striplines(ex)))
37
end
38
39
0 commit comments