From 44f0c62a67a9b80a7fa39530b0354300c4874c43 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 f841554b63eebc..19a932dc42eda5 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