source: public_html/release-notes-0.24.shtml

Last change on this file was 15275, checked in by Mark Evenson, 4 years ago

site: clean up HTML

Start moving all presentation logic into CSS.

Declare documents as polyglot HTML5/XHTML
<https://dev.w3.org/html5/html-polyglot/html-polyglot.htm>.

Strip use SVN $Id$ expansion as this doesn't convey any useful
information to the actual reader of the page.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
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.24</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.24</h1>
12 </div>
13
14<!--#include virtual="left-menu" -->
15
16<div class="rn">
17
18<dl>
19  <dt>Fixed an issue causing FASLs to be able to contain only a limited
20    number of functions.
21  </dt>
22  <dd>As part of an attempt to increase ABCL's boot performance,
23    the ability for a FASL to contain an arbitrary number of functions was
24    broken. The old behaviour is now restored. There was no notable difference
25    in startup times.
26  </dd>
27  <dt>Improved support for embedding: ABCL no longer
28    contains calls to System.exit().
29  </dt>
30  <dd>Instead of calling System.exit(), ABCL now throws one of two Errors.
31    When the EXT:EXIT or EXT:QUIT functions are called, it throws
32    org.armedbear.lisp.ProcessingTerminated. If an unrecoverable integrity
33    error is encountered, it throws an org.armedbear.lisp.IntegrityError
34  </dd>
35  <dt>Updated ASDF2</dt>
36  <dd>ASDF2 has been updated to its latest version 2.012</dd>
37  <dt>Extended class file writer: now with support for writing interfaces
38  </dt>
39  <dd>The new class file writer from the last release was specifically
40    targetted at generating class-defining class files.  It has now been
41    extended to allow generating interface files.
42  </dd>
43
44</dl>
45</div>
46
47<p><a href="release-notes.shtml">Release notes for older releases</a>.</p>
48
49<div class="footer">
50  <hr />
51  <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p>
52</div>
53
54</body>
55</html>
Note: See TracBrowser for help on using the repository browser.