|
Last change
on this file was
15275,
checked in by Mark Evenson, 6 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.4 KB
|
| Line | |
|---|
| 1 | <!DOCTYPE html> |
|---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
|---|
| 3 | <head> |
|---|
| 4 | <title>ABCL 0.12 Release Notes</title> |
|---|
| 5 | <link rel="stylesheet" type="text/css" href="style.css"/> |
|---|
| 6 | <meta charset="utf-8"/> |
|---|
| 7 | </head> |
|---|
| 8 | |
|---|
| 9 | <body> |
|---|
| 10 | <div id= "title" class="header"> |
|---|
| 11 | <h1>ABCL 0.13 Release Notes</h1> |
|---|
| 12 | </div> |
|---|
| 13 | |
|---|
| 14 | <!--#include virtual="left-menu" --> |
|---|
| 15 | |
|---|
| 16 | <div class="rn"> |
|---|
| 17 | |
|---|
| 18 | <dl> |
|---|
| 19 | <dt>JSR-223: Java Scripting Plugin |
|---|
| 20 | </dt> |
|---|
| 21 | <dd>ABCL supports - when built with the <code>javax.script</code> package |
|---|
| 22 | in the CLASSPATH - the interfaces defined in <a href="http://java.sun.com/developer/technicalArticles/J2SE/Desktop/scripting/">JSR-223</a>. |
|---|
| 23 | </dd> |
|---|
| 24 | <dt>Support for inlining FLOAT results</dt> |
|---|
| 25 | <dd>When given the right DECLARE forms, ABCL is now able to inline |
|---|
| 26 | calculations and intermediate values relating to FLOAT types. Before, |
|---|
| 27 | it used to box all FLOAT values and results, without inlining.</dd> |
|---|
| 28 | <dt>Compiler cleanups</dt> |
|---|
| 29 | <dd>Lots of code cleanup in the compiler, such as elimination of |
|---|
| 30 | nearly-equivalent code blocks.</dd> |
|---|
| 31 | <dt>TRACE-ing fixes</dt> |
|---|
| 32 | <dd>TRACE should no longer blow up when tracing FORMAT or inside |
|---|
| 33 | the compiler.</dd> |
|---|
| 34 | <dt>Support for "partial" wildcards in CL:DIRECTORY</dt> |
|---|
| 35 | <dd>Patterns such as #p"cl-*.lisp" are now supported.</dd> |
|---|
| 36 | </dl> |
|---|
| 37 | |
|---|
| 38 | </div> |
|---|
| 39 | |
|---|
| 40 | <div class="footer"> |
|---|
| 41 | <hr /> |
|---|
| 42 | <p>Hosted as part of <a href="https://common-lisp.net/">common-lisp.net</a></p> |
|---|
| 43 | </div> |
|---|
| 44 | |
|---|
| 45 | </body> |
|---|
| 46 | </html> |
|---|
Note: See
TracBrowser
for help on using the repository browser.