diff --git a/src/types.jl b/src/types.jl index 3abf6c139..8e8670fa0 100644 --- a/src/types.jl +++ b/src/types.jl @@ -790,7 +790,7 @@ function show_call(io, f, args) end else if issym(f) - Base.show_unquoted(io, nameof(f)) + print(io, string(nameof(f))) else Base.show(io, f) end @@ -834,7 +834,7 @@ showraw(t) = showraw(stdout, t) function Base.show(io::IO, v::BasicSymbolic) if issym(v) - Base.show_unquoted(io, v.name) + print(io, v.name) else show_term(io, v) end