From 33df293a6a46d83bdd3a9caa08b311ef74452d60 Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Tue, 31 Mar 2020 10:54:53 -0400 Subject: [PATCH] fix #35295, typo in change to `clipboard` on linux (#35310) --- stdlib/InteractiveUtils/src/clipboard.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/InteractiveUtils/src/clipboard.jl b/stdlib/InteractiveUtils/src/clipboard.jl index f841554b63eeb..19a932dc42eda 100644 --- a/stdlib/InteractiveUtils/src/clipboard.jl +++ b/stdlib/InteractiveUtils/src/clipboard.jl @@ -67,7 +67,7 @@ elseif Sys.islinux() || Sys.KERNEL === :FreeBSD end function clipboard() c = clipboardcmd() - cmd = _clipboardcmds_paste[c] + cmd = _clipboard_paste[c] return read(pipeline(cmd, stderr=stderr), String) end