From 10c2c36b32dac6173c4297a3d75483038af8b7a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=B8egh?= Date: Sat, 18 Oct 2014 20:40:28 +0200 Subject: [PATCH] wrongly placed println() --- base/interactiveutil.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/interactiveutil.jl b/base/interactiveutil.jl index c633c198946a47..535bf38516f6dd 100644 --- a/base/interactiveutil.jl +++ b/base/interactiveutil.jl @@ -43,9 +43,9 @@ function edit(file::String, line::Integer) spawn(`$edpath $file -l $line`) elseif edname == "nano" run(`$edpath +$line $file`) - println(no_line_msg) else run(`$(shell_split(edpath)) $file`) + println(no_line_msg) end nothing end