Skip to content

Commit

Permalink
don't have open(file) create the file by default
Browse files Browse the repository at this point in the history
closes #16
  • Loading branch information
JeffBezanson committed May 12, 2011
1 parent 66a1be1 commit f9a6b8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion j/io.j
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ open(fname::String, rd::Bool, wr::Bool, cr::Bool, tr::Bool) =
end;
s)

open(fname::String) = open(fname, true, true, true, false)
open(fname::String) = open(fname, true, true, false, false)

memio() = memio(0)
function memio(x::Int)
Expand Down

0 comments on commit f9a6b8b

Please sign in to comment.