Skip to content
Snippets Groups Projects
Commit de69bade authored by Raymond Toy's avatar Raymond Toy
Browse files

Update from logs.

parent ddfb0372
No related branches found
No related tags found
No related merge requests found
...@@ -48,12 +48,17 @@ New in this release: ...@@ -48,12 +48,17 @@ New in this release:
* Added UNICODE package to hold Unicode-related functions. * Added UNICODE package to hold Unicode-related functions.
Currently contains Unicode extended versions of STRING-UPCASE, Currently contains Unicode extended versions of STRING-UPCASE,
STRING-DOWNCASE, and STRING-CAPITALIZE. STRING-DOWNCASE, and STRING-CAPITALIZE.
* Optimizations in the x86 backend to speed up some operations and
reduce register restrictions.
* ANSI compliance fixes: * ANSI compliance fixes:
* Attempts to modify the standard readtable or the standard pprint * Attempts to modify the standard readtable or the standard pprint
dispatch table will now signal a continuable error. dispatch table will now signal a continuable error.
* Remove the Unicode extensions from string-upcase and friends. * Remove the Unicode extensions from string-upcase and friends.
This functionality is moved to the new UNICODE package. This functionality is moved to the new UNICODE package.
* DISASSEMBLE is conforming now; there are no options to
DISASSEMBLE. However, you can use DISASSEM:DISASSEMBLE if more
options are needed.
* Bugfixes: * Bugfixes:
* REPLACE and friends on strings were limited to strings less than * REPLACE and friends on strings were limited to strings less than
...@@ -74,6 +79,11 @@ New in this release: ...@@ -74,6 +79,11 @@ New in this release:
is represented internally as a UNION type, confusing the type is represented internally as a UNION type, confusing the type
derivation code. derivation code.
* Clean up and optimize x86 move VOPS and length/list VOP. * Clean up and optimize x86 move VOPS and length/list VOP.
* DISASSEM:DISASSEMBLE takes new keyword args, base, case, radix
to specify values for *print-base*, *print-case*, and
*print-radix* for disassembly. The defaults are 16, :downcase,
and *print-radix*, respectively. This is a change from previous
versions which used a base of 10 and a case of :upcase.
* Trac Tickets: * Trac Tickets:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment