Skip to content

Commit

Permalink
small fix to a showcompact definition
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed May 22, 2012
1 parent 6bd3cfc commit 0d9f1b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/show.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ print(io::IOStream, s::Symbol) = ccall(:jl_print_symbol, Void, (Ptr{Void}, Any,)
show(io, x) = ccall(:jl_show_any, Void, (Any, Any,), io, x)

showcompact(io, x) = show(io, x)
showcompact(x) = show(x)
showcompact(x) = showcompact(OUTPUT_STREAM::IOStream, x)

show(io, s::Symbol) = print(io, s)
show(io, tn::TypeName) = show(io, tn.name)
Expand Down

0 comments on commit 0d9f1b5

Please sign in to comment.