Skip to content

Commit 1a5f4f7

Browse files
committed
stop relying on sketchy Julia behavior in at-q
1 parent 0b7c46a commit 1a5f4f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/utils.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ expressions are preserverd.
3131
See also: [`rmlines`](@ref)
3232
"""
3333
macro q(ex)
34-
Expr(:quote, striplines(ex))
34+
# 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)))
3537
end
3638

3739
"""

0 commit comments

Comments
 (0)