Skip to content

Commit

Permalink
Merge pull request #167 from fredo-dedup/fix-escape-bug
Browse files Browse the repository at this point in the history
Fix a macro escape bug
  • Loading branch information
davidanthoff committed Jun 4, 2019
2 parents 46fb62f + 5980717 commit 250d3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsl_vlplot_macro/dsl_vlplot_macro.jl
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ function convert_curly_style(exprs, positional_key)
push!(new_exprs, :( $(string(ex.args[1])) => $(esc(ex.args[2])) ))
end
else
push!(new_exprs, :( $(string(positional_key)) => $ex ))
push!(new_exprs, :( $(string(positional_key)) => $(esc(ex)) ))
end
end

Expand Down

0 comments on commit 250d3e4

Please sign in to comment.