We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e134603 + 626743f commit e61a71aCopy full SHA for e61a71a
CHANGES.md
@@ -1,3 +1,9 @@
1
+## 3.6.5 -- UNRELEASED
2
+
3
+Add a missing bridge function to io.aviso.repl, `pretty-print-exception`.
4
5
+[Closed Issues](https://github.com/clj-commons/pretty/milestone/64?closed=1)
6
7
## 3.6.4 -- 5 Sep 2025
8
9
* The default layout for tables has been tightened up
src/io/aviso/repl.clj
@@ -13,3 +13,10 @@
13
(defn uncaught-exception-handler
14
[]
15
(repl/uncaught-exception-handler))
16
17
+(defn pretty-print-stack-trace
18
+ "Replacement for `clojure.stacktrace/print-stack-trace` and `print-cause-trace`. These functions are used by `clojure.test`."
19
+ ([tr] (repl/pretty-print-stack-trace tr))
20
+ ([tr n]
21
+ (println)
22
+ (repl/pretty-print-stack-trace tr n)))
0 commit comments