From 07f3ee7e0d2a2120df1ecfca4b0953151ee184e2 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Sun, 15 Feb 2015 12:24:51 +0530 Subject: [PATCH] Fix #10197 --- base/exports.jl | 2 ++ base/sparse/sparsematrix.jl | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) 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