Skip to content

Commit

Permalink
fix #4562
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Oct 18, 2013
1 parent 881bc23 commit c1cdf93
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions base/datafmt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ function writedlm(io::IO, a::Union(AbstractMatrix,AbstractVector), dlm::Char)
nothing
end

writedlm{T}(io::IO, a::AbstractArray{T,0}, dlm::Char) = writedlm(io, reshape(a,1), dlm)

function writedlm(io::IO, a::AbstractArray, dlm::Char)
tail = size(a)[3:]
function print_slice(idxs...)
Expand Down

0 comments on commit c1cdf93

Please sign in to comment.