X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=NEWS;h=badacbc8df8086256e4c4b3cf59e906f8a0a799d;hb=6da872adcd17f7c619e210616ece0fdd280581ca;hp=10f07f0ef54522753e5ec7029d844b7f8fd83c09;hpb=a9cac95ee124f8e71a31554964d308f74da9c866;p=sbcl.git diff --git a/NEWS b/NEWS index 10f07f0..badacbc 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,24 @@ ;;;; -*- coding: utf-8; -*- +changes in sbcl-1.0.14 relative to sbcl-1.0.13: + * new feature: SB-EXT:*EXIT-HOOKS* are called when the process exits + (see documentation for details.) + * revived support for OpenBSD (contributed by Josh Elsasser) + * bug fix: ROOM no longer suffers from occasional (AVER (SAP= + CURRENT END)) failures. + * bug fix: RESOLVE-CONFLICT (and the other name conflict machinery) + is now actually exported from SB-EXT as documented. (reported by + Maciej Katafiasz) + * bug fix: sb-aclrepl now correctly understands how to inspect + single-floats on 64-bit platforms where single-floats are not boxed. + * DESCRIBE and (DOCUMENTATION ... 'OPTIMIZE) describe meaning of + SBCL-specific optimize qualities. + changes in sbcl-1.0.13 relative to sbcl-1.0.12: + * minor incompatible change: RUN-PROGRAM now uses execvp(3) to find + an executable in the search path, and does so in the child + process's PATH. The function FIND-EXECUTABLE-IN-SEARCH-PATH has + been removed; it can be found in the CVS history, for somebody who + needs that search behavior (see the manual). * minor incompatible change: compiler policy re. weakening type checks has changed: now type checks are weakened on if SAFETY < 2 and SAFETY < SPEED. @@ -7,6 +26,9 @@ changes in sbcl-1.0.13 relative to sbcl-1.0.12: unparsing of directory pathnames as files. Analogously, SB-EXT:PARSE-NATIVE-NAMESTRING takes an AS-DIRECTORY, forcing a filename to parse into a directory pathname. + * enhancement: implicit generic function creation now signals a + specific style-warning IMPLICIT-GENERIC-FUNCTION-WARNING, which + users can bind handlers for and muffle around calls to LOAD. * enhancement: RUN-PROGRAM allows unicode arguments and environments to be used (using the default stream external format), and allows non-simple strings to be used. (thanks to Harald Hanche-Olsen)