diff options
author | Miran <narimiran@disroot.org> | 2019-04-02 09:10:03 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-04-02 09:10:03 +0200 |
commit | b7077905190ac27578ff0674674a71a569582c09 (patch) | |
tree | 61a82680359dc0fabeb696f0766a924be0409673 | |
parent | f5a7a3bee9c500acc547b0f3414dbdcbdbe00941 (diff) | |
download | Nim-b7077905190ac27578ff0674674a71a569582c09.tar.gz |
do not display stacktrace twice, fixes #10922 (#10939)
-rw-r--r-- | lib/system/excpt.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim index 75a0e8967..78fc34b91 100644 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -371,7 +371,6 @@ proc raiseExceptionAux(e: ref Exception) = add(buf, $e.name) add(buf, "]\n") unhandled(buf): - showErrorMessage(buf) quitOrDebug() else: # ugly, but avoids heap allocations :-) |