Skip to content
Snippets Groups Projects
Commit 7d8a9670 authored by rtoy's avatar rtoy
Browse files

Update from logs.

parent 424c9964
No related branches found
No related tags found
No related merge requests found
...@@ -100,6 +100,9 @@ New in this release: ...@@ -100,6 +100,9 @@ New in this release:
- The interpreter catches invalid EVAL-WHEN situations just like - The interpreter catches invalid EVAL-WHEN situations just like
the compiler, instead of silently ignoring them. the compiler, instead of silently ignoring them.
- FLOAT-PRECISION supports double-double floats. - FLOAT-PRECISION supports double-double floats.
- Tracing should now be working on Darwin/x86. Previously,
certain cases would cause Lisp to segfault in bad ways where you
could not return to the repl.
* Trac Tickets: * Trac Tickets:
- #16: Read-time hash-table issue - #16: Read-time hash-table issue
...@@ -121,6 +124,11 @@ New in this release: ...@@ -121,6 +124,11 @@ New in this release:
Fixed by delaying the logand defoptimizer. Fixed by delaying the logand defoptimizer.
- #15: x86 double-float issue - #15: x86 double-float issue
Fixed when using SSE2 support. We will not fix this for x87. Fixed when using SSE2 support. We will not fix this for x87.
- #25: Compiler bug
Fixed.
- #26: slot-value type check
Fixed for some cases. When used in methods, slot-value may not
do the type check.if the object is not a argument to the method.
* Other changes: * Other changes:
- IS1, IS2, IS3, and IS4 are recognized character names for the - IS1, IS2, IS3, and IS4 are recognized character names for the
...@@ -148,6 +156,9 @@ New in this release: ...@@ -148,6 +156,9 @@ New in this release:
slot-value-using-class have been fixed. slot-value-using-class have been fixed.
Get-accessor-method-function was causing an error to be signaled Get-accessor-method-function was causing an error to be signaled
incorrectly. incorrectly.
- (setf (slot-value <obj> <slot>) <new>) will now signal an error
in some situations when the new value is not of the correct
declared type for slot.
* Changes to building procedure: * Changes to building procedure:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment