diff --git a/base/exports.jl b/base/exports.jl index 030553144c26c..2f87c86d5976a 100644 --- a/base/exports.jl +++ b/base/exports.jl @@ -13,6 +13,7 @@ export LinAlg, BLAS, LAPACK, + SparseMatrix, Docs, Markdown, @@ -904,6 +905,7 @@ export searchindex, show, showall, + showarray, showcompact, showerror, split, diff --git a/base/sparse/sparsematrix.jl b/base/sparse/sparsematrix.jl index 9300f6a5627db..c4236980400e9 100644 --- a/base/sparse/sparsematrix.jl +++ b/base/sparse/sparsematrix.jl @@ -23,8 +23,8 @@ rowvals(S::SparseMatrixCSC) = S.rowval nzrange(S::SparseMatrixCSC, col::Integer) = S.colptr[col]:(S.colptr[col+1]-1) function showarray(io::IO, S::SparseMatrixCSC; - header::Bool=true, limit::Bool=Base._limit_output, - rows = Base.tty_size()[1], repr=false) + header::Bool=true, limit::Bool=Base._limit_output, + rows = Base.tty_size()[1], repr=false) # TODO: repr? if header