Skip to content

Commit

Permalink
Merge 2763028 into 72a6304
Browse files Browse the repository at this point in the history
  • Loading branch information
ExpandingMan committed Jun 14, 2018
2 parents 72a6304 + 2763028 commit c28c2d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abstractdataframe/show.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ end
#'
#' ourshowcompact(stdout, "abc")
#' ourshowcompact(stdout, 10000)
ourshowcompact(io::IO, x::Any) = showcompact(io, x) # -> Void
ourshowcompact(io::IO, x::Any) = show(IOContext(io, :compact=>true), x) # -> Void
ourshowcompact(io::IO, x::AbstractString) = escape_string(io, x, "") # -> Void
ourshowcompact(io::IO, x::Symbol) = ourshowcompact(io, string(x)) # -> Void

Expand Down

0 comments on commit c28c2d2

Please sign in to comment.