Skip to content

Commit

Permalink
Merge pull request JuliaLang#25685 from JuliaLang/kc/deprec_edit
Browse files Browse the repository at this point in the history
fix using deprecated Base.LineEdit in REPL
  • Loading branch information
Keno committed Jan 22, 2018
2 parents a71ae77 + c27de6a commit 45a1ec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/REPL/src/REPL.jl
Original file line number Diff line number Diff line change
Expand Up @@ -979,10 +979,10 @@ function setup_interface(
@goto writeback
end
Base.edit(linfos[n][1], linfos[n][2])
Base.LineEdit.refresh_line(s)
LineEdit.refresh_line(s)
return
@label writeback
write(Base.LineEdit.buffer(s), str)
write(LineEdit.buffer(s), str)
return
end,
)
Expand Down

0 comments on commit 45a1ec1

Please sign in to comment.