diff options
author | Araq <rumpf_a@web.de> | 2010-09-20 22:33:23 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2010-09-20 22:33:23 +0200 |
commit | 0a57f662fa6f15916caa564312a162ddb3c04883 (patch) | |
tree | c713e9d318d0c944d678a20b294b4a1a3f0bec74 /lib/system/excpt.nim | |
parent | f182d8d708aa3195b87a0e732faf73d3d3fa4b24 (diff) | |
download | Nim-0a57f662fa6f15916caa564312a162ddb3c04883.tar.gz |
bugfix: finally sections are executed before return/break
Diffstat (limited to 'lib/system/excpt.nim')
-rwxr-xr-x | 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 65e233476..938583bf7 100755 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -61,7 +61,6 @@ proc popCurrentException {.compilerRtl, inl.} = # some platforms have native support for stack traces: const - nimrodStackTrace = compileOption("stacktrace") nativeStackTrace = (defined(macosx) or defined(linux)) and not nimrodStackTrace and false |