diff options
author | Araq <rumpf_a@web.de> | 2015-06-29 02:48:08 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-06-29 02:48:34 +0200 |
commit | 63c537b233c1e7148b80c0bfc4e667b95117dc5a (patch) | |
tree | ce40cbff3cbd44a5b58bd411777edb26b7b48093 /lib | |
parent | a1caef474bb6e49baed811ea2a3038cd08c9d86c (diff) | |
download | Nim-63c537b233c1e7148b80c0bfc4e667b95117dc5a.tar.gz |
fixes #3014
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system/excpt.nim | 2 |
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 |