summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-06-29 02:48:08 +0200
committerAraq <rumpf_a@web.de>2015-06-29 02:48:34 +0200
commit63c537b233c1e7148b80c0bfc4e667b95117dc5a (patch)
treece40cbff3cbd44a5b58bd411777edb26b7b48093 /lib
parenta1caef474bb6e49baed811ea2a3038cd08c9d86c (diff)
downloadNim-63c537b233c1e7148b80c0bfc4e667b95117dc5a.tar.gz
fixes #3014
Diffstat (limited to 'lib')
-rw-r--r--lib/system/excpt.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim
index f157f428c..5d2faa2d6 100644
--- a/lib/system/excpt.nim
+++ b/lib/system/excpt.nim
@@ -63,7 +63,7 @@ proc pushCurrentException(e: ref Exception) {.compilerRtl, inl.} =
   currException = e
 
 proc popCurrentException {.compilerRtl, inl.} =
-  currException = currException.parent
+  currException = nil # currException.parent
 
 # some platforms have native support for stack traces:
 const