Skip to content

Commit

Permalink
Suppress additional meta printing for unknown types
Browse files Browse the repository at this point in the history
Fixes #515
  • Loading branch information
mfikes committed Jun 21, 2017
1 parent 07583ae commit 9126717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planck-cljs/src/planck/pprint/data.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
(visit-unknown [this x]
(if (instance? Eduction x)
(visit this (sequence x))
[:text (pr-str x)]))
[:text (binding [*print-meta* false] (pr-str x))]))

(visit-nil [this]
(wrap-theme :results-font theme "nil"))
Expand Down

0 comments on commit 9126717

Please sign in to comment.