diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2010-08-01 14:49:54 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2010-08-01 14:49:54 +0200 |
commit | 03724c2952e4eea4d9e16f5b4eccec862a1ba21c (patch) | |
tree | e456ae6e514beae649defcc5596d40fd42f62f66 /web/news.txt | |
parent | ff02ce2d50d8a4b445f9fba6076527c3db62425c (diff) | |
download | Nim-03724c2952e4eea4d9e16f5b4eccec862a1ba21c.tar.gz |
before stack init change
Diffstat (limited to 'web/news.txt')
-rwxr-xr-x | web/news.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web/news.txt b/web/news.txt index b7f02b5ac..f70bb5bdd 100755 --- a/web/news.txt +++ b/web/news.txt @@ -34,6 +34,10 @@ Changes affecting backwards compatibility - Removed ``strutils.splitLinesSeq``. - Removed ``strutils.splitSeq``. - Removed ``strutils.toString``. +- If a DLL cannot be loaded (via the ``dynlib`` pragma) ``EInvalidLibrary`` + is not raised anymore. Instead ``system.quit()`` is called. This is because + raising an exception requires heap allocations. However the memory manager + might be contained in the DLL that failed to load. Additions |