Skip to content

Commit b052916

Browse files
committed
escape the condition from atsign-breakpoint
Fixes breakages due to JuliaLang/julia#37573
1 parent 9b2ae10 commit b052916

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/breakpoints.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ macro breakpoint(call_expr, args...)
409409
end
410410
args = Base.tail(args)
411411
end
412-
condexpr = condition === nothing ? nothing : Expr(:quote, condition)
412+
condexpr = condition === nothing ? nothing : esc(Expr(:quote, condition))
413413
if haveline
414414
return quote
415415
local method = $whichexpr

0 commit comments

Comments
 (0)