Skip to content

Commit

Permalink
Merge pull request #6560 from tkelman/patch-5
Browse files Browse the repository at this point in the history
Bring back the nice LineEditREPL on Windows
  • Loading branch information
nolta committed Apr 18, 2014
2 parents 4fe5d2f + 3f53294 commit ca44f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/client.jl
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ function _start()
global is_interactive = !isa(STDIN,Union(File,IOStream))
color_set || (global have_color = false)
else
term = Terminals.TTYTerminal(get(ENV,"TERM","dumb"),STDIN,STDOUT,STDERR)
term = Terminals.TTYTerminal(get(ENV,"TERM",@windows? "" : "dumb"),STDIN,STDOUT,STDERR)
global is_interactive = true
color_set || (global have_color = Terminals.hascolor(term))
end
Expand Down

0 comments on commit ca44f9b

Please sign in to comment.