From 5a416e51d2e78ed07923df960c9636841cf6ca3e Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Wed, 8 Apr 2020 10:09:06 +0200 Subject: [PATCH] fix warning --- src/backends/pgfplotsx.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pgfplotsx.jl b/src/backends/pgfplotsx.jl index e19196ef..40acd392 100644 --- a/src/backends/pgfplotsx.jl +++ b/src/backends/pgfplotsx.jl @@ -911,7 +911,7 @@ function pgfx_sanitize_string(s::AbstractString) s = replace(s, r"\\?\}" => "\\}") end @require LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f" begin - using LaTeXStrings + using .LaTeXStrings function pgfx_sanitize_string(s::LaTeXString) s = replace(s, r"\\?\#" => "\\#") s = replace(s, r"\\?\%" => "\\%")