Minor changes

This commit is contained in:
Giorgio Calderone 2020-04-12 00:39:21 +02:00
parent 41d7cb991a
commit 2d9537edc4

View File

@ -293,7 +293,6 @@ function GPSession(sid::Symbol)
line = "" line = ""
while true while true
c = read(stream, Char) c = read(stream, Char)
print(c)
(c == '\r') && continue (c == '\r') && continue
(c == '\n') && break (c == '\n') && break
if c == Char(0x1b) # sixel if c == Char(0x1b) # sixel
@ -1750,7 +1749,7 @@ function repl_init(start_key='>')
start_key=start_key, start_key=start_key,
mode_name="Gnuplot", mode_name="Gnuplot",
completion_provider=nothing, # TODO: fix autocompletion completion_provider=nothing, # TODO: fix autocompletion
valid_input_checker=repl_isvalid, sticky_mode=false) valid_input_checker=repl_isvalid)
end end
end #module end #module