From 5eeac69e1e1d947dba39133039afbac6b9083efc Mon Sep 17 00:00:00 2001 From: Yichao Yu Date: Sun, 11 Sep 2016 08:55:42 -0400 Subject: [PATCH] Fix use of `invoke` --- src/Gadfly.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gadfly.jl b/src/Gadfly.jl index bff52c3c8..e74857b68 100644 --- a/src/Gadfly.jl +++ b/src/Gadfly.jl @@ -1018,7 +1018,7 @@ function display(p::Plot) @try_display return display(displays[i], p) end end - invoke(display,(Any,),p) + invoke(display, Tuple{Any}, p) end