Browse Source

Base.REPL -> REPL

pull/14/head
Fredrik Ekre 8 years ago
parent
commit
275a64616f
  1. 4
      src/Literate.jl

4
src/Literate.jl

@ -1,7 +1,7 @@
__precompile__() __precompile__()
module Literate module Literate
import JSON import JSON, REPL
include("IJulia.jl") include("IJulia.jl")
import .IJulia import .IJulia
@ -538,7 +538,7 @@ function execute_notebook(nb)
end end
# check if ; is used to suppress output # 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 # r should go into execute_result
if r !== nothing if r !== nothing

Loading…
Cancel
Save