From ed9b84d16644ceb78584f05ed15a3116355e9e3a Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Thu, 19 Mar 2020 18:25:04 +0100 Subject: [PATCH] Bugfix --- src/Gnuplot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gnuplot.jl b/src/Gnuplot.jl index 9b40bfe..99ee308 100644 --- a/src/Gnuplot.jl +++ b/src/Gnuplot.jl @@ -893,7 +893,7 @@ end See documentation for `@gp`. """ macro gsp(args...) - out = Expr(:macrocall, Symbol("@gp"), LineNumberNode(1, "Gnuplot.jl")) + out = Expr(:macrocall, Symbol("@gp"), LineNumberNode(1, nothing)) push!(out.args, args...) push!(out.args, Expr(:kw, :flag3d, true)) return esc(out)