summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMiran <narimiran@disroot.org>2019-04-02 09:10:03 +0200
committerAndreas Rumpf <rumpf_a@web.de>2019-04-02 09:10:03 +0200
commitb7077905190ac27578ff0674674a71a569582c09 (patch)
tree61a82680359dc0fabeb696f0766a924be0409673
parentf5a7a3bee9c500acc547b0f3414dbdcbdbe00941 (diff)
downloadNim-b7077905190ac27578ff0674674a71a569582c09.tar.gz
do not display stacktrace twice, fixes #10922 (#10939)
-rw-r--r--lib/system/excpt.nim1
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 :-)