1 | <!DOCTYPE html> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
3 | <head> |
---|
4 | <title>Release Notes for ABCL 0.25</title> |
---|
5 | <link rel="stylesheet" type="text/css" href="style.css"/> |
---|
6 | <meta charset="utf-8"/> |
---|
7 | </head> |
---|
8 | |
---|
9 | <body> |
---|
10 | <div class="header"> |
---|
11 | <h1>Release Notes for ABCL 0.25</h1> |
---|
12 | </div> |
---|
13 | |
---|
14 | <!--#include virtual="left-menu" --> |
---|
15 | |
---|
16 | <div id="title" class="rn"> |
---|
17 | |
---|
18 | <dl> |
---|
19 | <dt>New :resolve-symlinks keyword argument for DIRECTORY |
---|
20 | </dt> |
---|
21 | <dd>Passing NIL as the value for :resolve-symlinks prevents DIRECTORY from |
---|
22 | returning truenames. |
---|
23 | </dd> |
---|
24 | <dt>LISP-IMPLEMENTATION-VERSION now includes Subversion revision info |
---|
25 | </dt> |
---|
26 | <dd>`svnversion` is used to retrieve the state of the working copy |
---|
27 | being compiled from; the information is included in the value returned |
---|
28 | by lisp-implementation-version. |
---|
29 | </dd> |
---|
30 | <dt>Object instantiation speedups |
---|
31 | </dt> |
---|
32 | <dd>A cache has been implemented to reduce the number of calculatoins |
---|
33 | required when determining whether the keyword arguments to |
---|
34 | MAKE-INSTANCE and REINITIALIZE-INSTANCE are valid. |
---|
35 | </dd> |
---|
36 | <dt>Compiler refactoring to prevent further stack inconsistency errors |
---|
37 | </dt> |
---|
38 | <dd>Due to earlier changes to the compiler and the overall structure, |
---|
39 | the Java class verifier would detect 'stack inconsistency' issues |
---|
40 | in some specific cases. The refactoring should put an end to that. |
---|
41 | In the short term, however, this change could have a slightly destabilizing |
---|
42 | effect. Tests have been carried out, but no issues were found so far. |
---|
43 | </dd> |
---|
44 | <dd>Instantiation of forward referenced classes |
---|
45 | </dd> |
---|
46 | <dt>When trying to instantiate a forward referenced class, the user |
---|
47 | will not get a vague error anymore, but a clear error about |
---|
48 | the situation. |
---|
49 | </dt> |
---|
50 | </dl> |
---|
51 | </div> |
---|
52 | |
---|
53 | <p><a href="release-notes.shtml">Release notes for older releases</a>.</p> |
---|
54 | |
---|
55 | <div class="footer"> |
---|
56 | <hr /> |
---|
57 | <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p> |
---|
58 | </div> |
---|
59 | |
---|
60 | </body> |
---|
61 | </html> |
---|