From 1ec6172a283776975ef9077161e0b40f67ab5d1d Mon Sep 17 00:00:00 2001 From: gcalderone Date: Fri, 31 Aug 2018 16:50:29 +0200 Subject: [PATCH] Update Gnuplot.jl --- src/Gnuplot.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gnuplot.jl b/src/Gnuplot.jl index 6831b26..df66067 100644 --- a/src/Gnuplot.jl +++ b/src/Gnuplot.jl @@ -2,7 +2,7 @@ __precompile__(true) module Gnuplot -using NormalizeStructure +using StructC14N using ColorTypes using Printf @@ -199,7 +199,7 @@ function parseKeywords(; kwargs...) ylog=Bool, zlog=Bool) - kw = NormalizeStructure.normalize(template; kwargs...) + kw = canonicalize(template; kwargs...) out = Vector{String}() ismissing(kw.xrange ) || (push!(out, "set xrange [" * join(kw.xrange , ":") * "]")) ismissing(kw.yrange ) || (push!(out, "set yrange [" * join(kw.yrange , ":") * "]"))