diff options
Diffstat (limited to 'lib/system/excpt.nim')
-rw-r--r-- | lib/system/excpt.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim index e241879c2..931f3f640 100644 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -452,8 +452,8 @@ proc raiseExceptionAux(e: sink(ref Exception)) {.nodestroy.} = # XXX This check should likely also be done in the setjmp case below. if e != currException: pushCurrentException(e) - when gotoBasedExceptions: - inc nimInErrorMode + when gotoBasedExceptions: + inc nimInErrorMode else: if excHandler != nil: pushCurrentException(e) |