Skip to content

Commit

Permalink
workaround for JuliaLang/julia#3066
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Jul 27, 2013
1 parent 12b88c3 commit f056205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jlkernel/execute_request.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function execute_request(socket, msg)
__ = _ # 2nd result from last
ans = _ = result
if store_history
Out[_n] = result
Out[_n] = result == Out ? nothing : result # Julia #3066
eval(Main, :($(symbol(string("_",_n))) = $result))
end
end
Expand Down

0 comments on commit f056205

Please sign in to comment.