From 275a64616fb607af6393df11e9c43434ef9ff668 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Wed, 20 Jun 2018 16:03:19 +0200 Subject: [PATCH] Base.REPL -> REPL --- src/Literate.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Literate.jl b/src/Literate.jl index 0f24711..226a0d2 100644 --- a/src/Literate.jl +++ b/src/Literate.jl @@ -1,7 +1,7 @@ __precompile__() module Literate -import JSON +import JSON, REPL include("IJulia.jl") import .IJulia @@ -538,7 +538,7 @@ function execute_notebook(nb) end # check if ; is used to suppress output - r = Base.REPL.ends_with_semicolon(block) ? nothing : r + r = REPL.ends_with_semicolon(block) ? nothing : r # r should go into execute_result if r !== nothing