From 7ef300c11bc00374113585fddabc07b4b3227d0f Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Wed, 18 Mar 2020 16:25:32 +0100 Subject: [PATCH] Minor changes --- src/Gnuplot.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Gnuplot.jl b/src/Gnuplot.jl index b9590ed..9e4af27 100644 --- a/src/Gnuplot.jl +++ b/src/Gnuplot.jl @@ -999,8 +999,6 @@ To save the data and command from a specific session pass the ID as first argume In all cases the `term` keyword allows to specify a gnuplot terminal, and the `output` keyword allows to specify an output file. """ -save( ; kw...) = dump(getsession() ; all=true, kw...) -save(sid::Symbol ; kw...) = dump(getsession(sid) ; all=true, kw...) save( stream::IO ; kw...) = dump(getsession() , stream; all=true, kw...) save(sid::Symbol, stream::IO ; kw...) = dump(getsession(sid), stream; all=true, kw...) save( file::AbstractString; kw...) = open(file, "w") do stream; dump(getsession() , stream; all=true, kw...); end