mirror of
https://github.com/git/git
synced 2024-10-30 13:20:15 +00:00
7 lines
235 B
Text
7 lines
235 B
Text
|
(module A RIGHT
|
||
|
(export with-display-exception)
|
||
|
(extern (display-exception display-exception ChangeMe))
|
||
|
(def (with-display-exception thunk)
|
||
|
(with-catch (lambda (e) (display-exception e (current-error-port)) e)
|
||
|
thunk)))
|