0.9.15.17:
[sbcl.git] / NEWS
1 ;;;; -*- coding: utf-8; -*-
2 changes in sbcl-0.9.16 relative to sbcl-0.9.15:
3   * feature: implemented the READER-METHOD-CLASS and
4     WRITER-METHOD-CLASS portion of the Class Initialization Protocol
5     as specified by AMOP.
6   * optimization: faster LOGCOUNT implementation on x86 and x86-64
7     (thanks to Lutz Euler)
8   * optimization: hashing of general arrays and vectors has been
9     improved. (reported by Any Fingerhut)
10   * enhancement: SB-INTROSPECT is now able to find definitions of
11     profiled functions. (thanks to Troels Henriksen)
12   * enhancement: compiler-macro expansion applies now to FUNCALL forms
13     as well.
14   * enhancement: step-instrumentation no longer wraps known
15     single-value functions with multiple-value context, allowing
16     better type inference.
17   * fixed bug #337: use of MAKE-METHOD in method combination now works
18     even in the presence of user-defined method classes.  (reported by
19     Bruno Haible and Pascal Costanza)
20   * fixed bug #339(c): if there are applicable methods not part of any
21     long-form method-combination group, call INVALID-METHOD-ERROR.
22     (reported by Bruno Haible)
23   * fixed bug #361: the :FUNCTION initarg in the protocol for
24     initialization of methods can now be used to override
25     internally-produced optimized functions.  (reported by Bruno
26     Haible)
27   * bug fix: extensions of MAKE-METHOD-LAMBDA which wrap the
28     system-provided lambda expression no longer cause warnings about
29     unbound #:|pv-table| symbols.
30   * bug fix: improved the handling of type declarations and the
31     detection of violations for keyword arguments with non-constant
32     defaults.
33   * bug fix: potentially erronous calls to PATHNAME and
34     MERGE-PATHNAMES were being flushed in some cases.
35     (reported by Richard Kreuter)
36   * bug fix: compiled calls to TYPEP were mishandling obsolete
37     instances.  (reported by James Bielman and Attila Lendvai)
38   * bug fix: format strings with ~> without matching ~< no longer
39     trigger an AVER, but signal an understandable error instead.
40     (reported by Antonio Martinez)
41   * bug fix: specifying an output-file without a pathname-type for
42     COMPILE-FILE or COMPILE-FILE-PATHNAME resulted in using the type
43     of input-file instead of "fasl". (reported by Robert Dodier)
44   * bug fix: compiler-macro lambda-list parsing of FUNCALL forms.
45     (reported by James Y Knight).
46   * bug fix: compiler-macros-function did not consider the environment
47     argument for shadowing by local functions.
48   * bug fix: compiler-macros expansion was inhibited by local INLINE 
49     declarations.
50   * bug fix: inline expansions of known functions were subject to
51     step-instrumentation in high debug policies, leading to problems
52     with type-inference.
53   * bug fix: compiler failed to differentiate between different CONS
54     types in some cases.
55   * bug fix: fixed input, output and error redirection in RUN-PROGRAM
56     for win32. (thanks to Mike Thomas and Yaroslav Kavenchuk)
57
58 changes in sbcl-0.9.15 relative to sbcl-0.9.14:
59   * added support for the ucs-2 external format.  (contributed by Ivan
60     Boldyrev)
61   * minor incompatible change: pretty printing of objects of type
62     (cons symbol) is, in the default pprint-dispatch-table, now
63     sensitive to whether the symbol satisfies FBOUNDP.  (thanks to
64     Marcus Pearce)
65   * minor incompatible change: SB-MOP:FINALIZE-INHERITANCE is now
66     called later in a class's lifetime, possibly as late as when the
67     first instance of the class is created.  Previously,
68     SB-MOP:FINALIZE-INHERITANCE was called by the system as soon as a
69     class became finalizeable.
70   * fixed bug: FILE-POSITION sometimes returned inconsistent results
71     for multibyte external-format streams.  (thanks to "vbzoli")
72   * fixed bug: CHANGE-CLASS would fail to preserve the values of slots
73     with :ALLOCATION :CLASS inherited from superclasses of the
74     original class.
75   * fixed bug: anonymous classes can now be created using the :NAME
76     initarg and MAKE-INSTANCE / REINITIALIZE-INSTANCE, as specified by
77     AMOP.  (reported by Leonid Slobodov on comp.lang.lisp)
78   * fixed bug: core-files saved with :EXECUTABLE T can again be 
79     executed when SBCL_HOME isn't set. (reported by James Knight)
80   * fixed bug: toplevel LOCALLY forms with declarations could 
81     occasionally get miscompiled. (reported by Yaroslav Kavenchuk)
82   * fixed bug: printing from several different threads using different
83     values of *print-case* could cause invalid output, due to 
84     some internal special variables of the printer not being bound
85     thread-locally (reported by Max Mikhanosha)
86   * fixed bug: SPECIALIZER metaobjects (including anonymous classes
87     and EQL-SPECIALIZERs) can be used as specializers to DEFMETHOD.
88     (reported by Pascal Costanza)
89   * fixed bug: FINALIZE-INHERITANCE is called from
90     REINITIALIZE-INSTANCE on classes when the class has previously
91     been finalized, as required by AMOP.
92   * minor code generation optimizations:
93     ** better register allocation in CLOS dispatching functions
94     ** overflow detection when coercing signed bytes to fixnums on x86-64 
95     ** is now implemented with one IMUL instruction instead of three shifts
96     ** more efficient bit-vector access on x86 and x86-64
97     ** more efficient access to raw structure slots on x86 and x86-64
98   * fixed some bugs revealed by Paul Dietz' test suite:
99     ** ENSURE-DIRECTORIES-EXIST.8: ENSURE-DIRECTORIES-EXIST must
100        return its argument.
101
102 changes in sbcl-0.9.14 relative to sbcl-0.9.13:
103   * feature: thread support on Solaris/x86, and experimental thread support
104     on OS X/x86.
105   * feature: SBCL now tries to signal a STORAGE-CONDITION when running out
106     of heap.
107   * feature: SBCL now provides USE-VALUE and STORE-VALUE restarts in the
108     default method for SLOT-UNBOUND.
109   * minor incompatible change: prevent the user from specializing the
110     new-value argument to SB-MOP:SLOT-VALUE-USING-CLASS.  It's
111     somewhat counter to the intent of the protocol, I (CSR) think, and
112     additionally it just doesn't work in SBCL as currently
113     implemented, thanks to optimizations (that are always valid for
114     the other three SLOT-VALUEish functions, but not for the setter).
115   * minor incompatible change: the :SB-LDB feature is now enabled by
116     default, and DISABLE-DEBUGGER and ENABLE-DEBUGGER also affect
117     the low-level debugger.
118   * enchancement: RUN-PROGRAM is now able to extract the file-descriptor
119     from SYNONYM-STREAM and TWO-WAY-STEAMS provided they can be decomposed
120     down to an SB-SYS:FD-STREAM, allowing direct communication in
121     more cases. Temporary files and pipes are still used as a fallback
122     strategy.
123   * thread-safety: DECODE-UNIVERSAL-TIME & GET-DECODED-TIME depended
124     on the non-reentrant C functions localtime(3) and gmtime(3).
125   * bug fix: global optimization policy was not visible in LOCALLY and 
126     MACROLET forms.
127   * bug fix: class objects can be used as specializers in methods.
128     (reported by Pascal Costanza)
129   * bug fix: native unparsing of pathnames with :DIRECTORY NIL failed
130     with a type error. (reported by blitz_ on #lisp)
131   * bug fix: unparsing logical pathnames with :NAME :WILD :TYPE NIL
132     failed with a type error.  (reported by Pascal Bourguignon)
133   * bug fix: merging pathnames against defaults with :DIRECTORY
134     starting with '(:RELATIVE :BACK) should preserve the :BACK.
135     (reported by James Y Knight)
136   * bug fix: saving large (>2GB) cores on x86-64 now works
137   * bug fix: a x86-64 backend bug when compiling (setf aref) with a 
138     constant index and a (simple-array (signed-byte 32)) array
139   * bug fix: NAME-CHAR on an invalid symbol no longer signals an
140     error (patch by Robert J. Macomber)
141   * feature: TIME now displays the amount of run-time spent in GC
142   * bug fix: The debugger now does a better job of respecting 
143     (PUSH '(*PRINT-CIRCLE* . T) SB-DEBUG:*DEBUG-PRINT-VARIABLE-ALIST*)
144     when printing SB-DEBUG:*DEBUG-CONDITION*. (This is a debugger-only
145     workaround for bug 403.) 
146   * bug fix: floating point exception handling now works on FreeBSD
147     (thanks to NIIMI Satoshi)
148   * fixed some bugs revealed by Paul Dietz' test suite:
149     ** MISC.641: LET-conversion were not supposed to work in late
150        compilation stages.
151   * improvements to the Win32/x86 port:
152     ** GET-INTERNAL-RUN-TIME implemented, thanks to Frank Buss.
153     ** improved SB-BSD-SOCKETS support, thanks to Timothy Ritchey.
154
155 changes in sbcl-0.9.13 relative to sbcl-0.9.12:
156   * new feature: source path information is generated for macro-expansion
157     errors for use in IDE's like Slime (thanks to Helmut Eller)
158   * bug fix: calls to the compiler no longer modify *RANDOM-STATE*
159   * bug fix: compiler does not loop forever on an invalid type in
160     TYPEP.
161   * improvement: compilation of most CLOS applications is significantly
162     faster
163   * optimization: added a limited bytecode compiler for simple toplevel
164     forms, speeding up compilation and FASL loading
165
166 changes in sbcl-0.9.12 relative to sbcl-0.9.11:
167   * minor incompatible change: in sbcl-0.9.11 (but not earlier
168     versions) SB-MOP:FINALIZE-INHERITANCE would recursively descend
169     into subclasses of the finalized class.  Now user calls to
170     FINALIZE-INHERITANCE finalize just the one class, and calls by the
171     system return before any subclasses are finalized.
172   * minor incompatible change: The reader no longer ignores errors
173     regarding non-existent packages in #+ and #- feature tests.
174   * new feature: command line options --no-sysinit, --no-userinit to
175     inhibit loading the corresponding init files
176   * new feature: add a generic function SOCKET-SEND to SB-BSD-SOCKETS, 
177     for sending data through UDP sockets (thanks to François-René Rideau)
178   * minor incompatible change: SIGPIPE is ignored and "Broken pipe"
179     error is signalled instead (thanks to François-René Rideau)
180   * minor incompatible change: Error signalling behaviour of lexical
181     operations violating package locks has changed slightly. Refer to
182     documentation on package locks for details.
183   * enhancement: EVAL can process IF-expressions without resorting to the
184     compiler.
185   * bug fix: Some operations involving SIN, COS, or TAN weren't being
186     constant-folded properly due to missing out-of-line functions.
187     (reported by Mika Pihlajamäki)
188   * bug fix: LISTEN sometimes returned T even in cases where no data was
189     immediately available from the stream
190   * fixed bug: types of the last two arguments to SET-SYNTAX-FROM-CHAR
191     were reversed. (reported by Levente Mészáros)
192   * fixed bug: Tests for the (VECTOR T) type gave the wrong answer
193     when given a vector displaced to an adjustable array.  (reported
194     by Utz-Uwe Haus)
195   * bug fix: derivation of float boundaries from numbers outside the
196     appropriate float range (reported by John Wiseman)
197   * bug fix: MAKE-LOAD-FORM-SAVING-SLOTS accepts en empty slot name
198     list.
199   * bug fix: precomputing cache entries for generic functions with
200     some subclasses of specializers as yet invalid does not attempt to
201     fill a cache line with a negative offset.  (reported by Levente
202     Mészároz)
203   * improvements to DOCUMENTATION for TYPE and STRUCTURE doc-types:
204     allow condition class objects as arguments to DOCUMENTATION and
205     (SETF DOCUMENTATION); only find and set documentation for
206     structure names for the STRUCTURE doc-type.  (suggested by Gary
207     King)
208   * improvements to the Win32/x86 port:
209     ** (user-homedir-pathname) and default initialization file
210        locations now know about the user's "Documents and Settings"
211        directory (thanks to Yaroslav Kavenchuk)
212     ** run-program is implemented (thanks to Mike Thomas)
213     ** sockets support (thanks to Timothy Ritchey)
214     ** better backtrace support (thanks to Alastair Bridgewater)
215     ** sb-grovel supported
216     ** asdf-install and sb-posix work somewhat
217     ** capable of running Slime using SWANK:*COMMUNICATION-STYLE* NIL
218   * improvements to the Solaris/x86 port:
219     ** works on Solaris 11/Solaris Express
220     ** floating-point exception handling support
221     ** support for the breakpoint-based TRACE :ENCAPSULATE NIL facility
222   * fixed some bugs revealed by Paul Dietz' test suite:
223     ** REMOVE-METHOD returns its generic function argument even when
224        the method is not one of the generic functions' methods.
225     ** objects declared as MEMBER types can be admissible arguments to 
226        structure accessors.
227     ** printing characters should simply be printed by the FORMAT ~:C
228        directive.
229     ** compiler failure when compiling functions with hairy constant
230        defaults for optional parameters.
231     ** compiler produces wrong code when MAYBE-INLINE-expanding a
232        function, which is already optimized.
233
234 changes in sbcl-0.9.11 relative to sbcl-0.9.10:
235   * new platform: experimental support for SBCL x86/Darwin, including
236     MacOS X 10.4.5 on Intel.
237   * new feature: Unicode character names are now known to the system
238     (through CHAR-NAME and NAME-CHAR).
239   * new feature: the filesystem location of SBCL's core file is
240     exposed to lisp through the variable SB-EXT:*CORE-PATHNAME*.
241   * minor incompatible change: the contrib modules SB-POSIX and
242     SB-BSD-SOCKETS no longer depend on stub C libraries; the intent of
243     this change is to make it easier to distribute
244     location-independent binaries.
245   * bug fix: as implied by AMOP, standardized classes no longer have
246     slots named by external symbols of public packages.  (reported by
247     Pascal Costanza)
248   * optimization: calling functions via constant symbols -- as in 
249     (FUNCALL 'FOO) -- is now roughly as efficient as calling them
250     via the function object as in (FUNCALL #'FOO).
251   * optimization: on x86 and x86-64, the calling convention for the
252     case of dealing with an unknown number of values has been altered
253     to be friendlier to the prediction heuristics implemented,
254     particularly with reference to CALL and RET pairing.  (thanks to
255     Alastair Bridgewater)
256   * optimization: on x86, the code for access to thread-local symbol
257     values and binding/unbinding of thread-local symbols is smaller.
258     (thanks to Alastair Bridgewater)
259   * enhancement: CONSTANTP is now able to determine constantness of
260     more complex forms, including calls to constant-foldable standardized
261     functions and some special forms beyond QUOTE.
262   * fixed bug: occasional GC crashes on Solaris/x86
263   * optimization: x86-64 supports stack allocation of results of simple
264     calls of MAKE-ARRAY, bound to variables, declared DYNAMIC-EXTENT
265   * enchancement: the PROCESS-INPUT and -OUTPUT streams created by 
266     SB-EXT:RUN-PROGRAM can be used for both character and byte IO
267     (thanks to James Knight)
268   * fixed bug: CL:LISTEN always returns NIL at end of file, as required
269     by the standard (thanks to Stephen Compall)
270
271 changes in sbcl-0.9.10 relative to sbcl-0.9.9:
272   * new feature: new SAVE-LISP-AND-DIE keyword argument :EXECUTABLE can
273     be used for bundling the runtime and the core file into one 
274     executable binary. This feature is not currently supported on all SBCL
275     platforms.  (thanks to James Bielman and NIIMI Satoshi)
276   * new feature: a generational or ephemeral garbage collector is now
277     the default on the PowerPC platform (both Linux and Darwin).  The
278     old Cheney (stop and copy) collector is a build-time option.
279     (thanks to Cyrus Harmon, after Raymond Toy)
280   * minor incompatible change: the method by which SBCL finds its
281     contributed modules has changed; it no longer relies on symbolic
282     links from an $SBCL_HOME/systems directory, but searches directly
283     in the subdirectories of $SBCL_HOME.
284   * enhancement: the dynamic heap size on the Linux/PPC platform is
285     markedly larger, even using the older Cheney garbage collector.
286   * fixed bug #399: full call to DATA-VECTOR-REF in accesses to
287     certain complicated string types.  (reported by Gary King)
288   * fixed bug: STRING-TO-OCTETS and OCTETS-TO-STRING did not convert
289     character codes.  (thanks to Yaroslav Kavenchuk and Ivan Boldyrev)
290   * fixed bug: DOCUMENTATION on structures no longer signals an 
291     error if no structure type of the right name exists.  (reported by
292     Glenn Ehrlich)
293   * fixed bug: compiled calls to MAKE-INSTANCE where there is an
294     applicable non-standard primary or :AROUND method on
295     INITIALIZE-INSTANCE or SHARED-INITIALIZE and a non-keyword initarg
296     no longer cause unbound variable errors.  (reported by Kevin Reid)
297   * fixed bug: metacircle resolution in cases where methods have slots
298     added before the slots from STANDARD-METHOD.  (reported by Jean
299     Bresson)
300   * fixed bug: the Power PC assembly code for calling into lisp
301     sometimes computed its return address wrongly (depending on the
302     15th bit of the address, fixed at link time).  This used to
303     manifest itself in a segmentation violation while building PCL.
304     (reported by Kevin Rosenberg, Eric Marsden, Lars Brinkhoff and
305     many others over the years)
306   * fixed bug: ROOM no longer reports silly numbers for stack usage if
307     the stack pointer (treated as a signed integer) is negative.
308     (thanks to Peter van Eynde)
309
310 changes in sbcl-0.9.9 relative to sbcl-0.9.8:
311   * new platform: experimental support for the Windows operating
312     system has been added.  (thanks to Alastair Bridgewater)
313   * fixed several bugs in and robustified the PPC FFI (including
314     callbacks).  (thanks to Cyrus Harmon and Heiner Schwarte)
315   * bug fix: allow non-simple string symbol names (reported by Paul
316     Dietz)
317   * bug fix: interrupt handling on NetBSD (thanks to Richard M
318     Kreuter)
319   * bug fix: saving a core corrupted callbacks on x86/x86-64
320   * bug fix: closed a loophole in metacircularity detection and
321     grounding in the PCL implementation of CLOS.
322   * bug fix: TRUENAME on "/" no longer returns a relative pathname.
323     (reported by tomppa on #lisp)
324   * bug fix: clear the direction flag on Lisp -> C transitions, as 
325     required by the x86-64 ABI. Fixes mysterious GC crashes on SuSE.
326     (reported by Andrej Grozin and Hendrik Maryns)
327   * optimization: major improvements to GC efficiency on GENCGC platforms
328   * optimization: faster implementation of EQUAL
329   * optimization: emit more efficient opcodes for some common 
330     immediate->register MOV instructions on x86-64.  (thanks to Lutz Euler)
331   * optimization: several other minor code-generation improvements on x86-64
332   * fixed segfaults on x86 FreeBSD 7-current.  (thanks to NIIMI Satoshi)
333
334 changes in sbcl-0.9.8 relative to sbcl-0.9.7:
335   * minor incompatible change: (SETF CLASS-NAME) and (SETF
336     GENERIC-FUNCTION-NAME) are generic functions once more (reverting
337     the change in the 0.9.7 release).  (SETF CLASS-NAME) is specified
338     by ANSI as a generic function, and for consistency (SETF
339     GENERIC-FUNCTION-NAME) is treated likewise.
340   * fixed bug #233.b: make constraint propagation notice when a variable
341     value is changed after it is referenced but before it is used
342   * fixed bug #296: no more arbitrary behaviour from filenames with
343     odd characters as --load arguments.  (reported by Adam Warner)
344   * fixed bug #390: :CHARACTER-SET pathname components now work as
345     expected.  (reported by Tim Daly Jr)
346   * fixed bug #391: complicated :TYPE intersections in slot
347     definitions no longer cause an error in PCL internals.
348   * fixed bug #392: plugged a hole in the obsolete-instance protocol.
349   * bug fix: FILE-STRING-LENGTH is now external-format sensitive,
350     returning the number of octets which would be written to the
351     file-stream.  (thanks to Robert J. Macomber)
352   * bug fix: the SB-SIMPLE-STREAMS contrib passes external-format
353     arguments to the internal stream functions.  (thanks to David
354     Lichteblau)
355   * bug fix: stack exhaustion is now handled on the x86/SunOS
356     platform.  (thanks to Daisuke Homma)
357   * bug fix: more accurate ROOM results on GENCGC platforms
358   * optimization: improved type inference for arithmetic-for
359     index variables in LOOP
360   * optimization: faster floating-point SQRT on x86-64
361   * fixed some bugs revealed by Paul Dietz' test suite:
362     ** DOCUMENTATION returns NIL instead of "" for method combinations
363        that don't have a docstring
364 \a
365 changes in sbcl-0.9.7 relative to sbcl-0.9.6:
366   * minor incompatible change: (SETF CLASS-NAME) and (SETF
367     GENERIC-FUNCTION-NAME) are no longer generic functions, and
368     therefore are not customizeable by user code (as seems to be at
369     least permitted and maybe required by AMOP).  As a consolation,
370     however, the SBCL implementation of these functions now calls
371     REINITIALIZE-INSTANCE as specified by AMOP.
372   * bug fix: slot-definition documentation is propagated as per ANSI
373     7.6.2 to EFFECTIVE-SLOT-DEFINITIONS.
374     COMPUTE-EFFECTIVE-SLOT-DEFINITION now receives a :DOCUMENTATION
375     argument, as do eslotd initialization methods.  (from Pascal
376     Costanza's "Closer" project)
377   * bug fix: REINITIALIZE-INSTANCE on generic functions calls
378     COMPUTE-DISCRIMINATING-FUNCTION (almost) unconditionally, as
379     specified by AMOP.
380   * bug fix: it is now possible to have more than one subclass of
381     STANDARD-GENERIC-FUNCTION without causing stack overflow.
382     (reported by Bruno Haible, Pascal Costanza and others)
383   * bug fix: the dependent update protocol now works for generic
384     functions.  (thanks to Gerd Moellmann; reported by Bruno Haible
385     and Pascal Costanza)
386   * bug fix: condition-class instances corresponding to
387     DEFINE-CONDITION forms are now created eagerly.  (reported by
388     Kalle Olavi Niemitalo on comp.lang.lisp)
389   * bug fix: floating point printing is more accurate in some
390     circumstances.  (thanks to Simon Alexander)
391   * bug fix: *COMPILE-FILE-PATHNAME* now contains the user's pathname
392     merged with *DEFAULT-PATHNAME-DEFAULTS*.
393   * bug fix: callbacks on OS X now preserve stack-alignment.
394     (thanks to Cyrus Harmon)
395   * enhancement: the x86-64 disassembler is much better at
396     disassembling SSE instructions.  (thanks to Lutz Euler)
397   * enhancement: CHECK-TYPE on a variable now allows type-inference
398     (thanks to Vincent Arkesteijn)
399   * optimization: improved performance of EUC-JP external format.
400     (thanks to NIIMI Satoshi)
401   * optimization: performance improvements to IO on file streams of
402     :ELEMENT-TYPE CHARACTER
403   * optimization: much faster memory allocation on x86-64
404   * optimization: faster garbage collections (latency and throughput)
405     on gencgc
406   * optimization: faster bignum subtraction and division on x86 and x86-64 
407     (thanks to Lutz Euler)
408   * optimization: more accurate type-inference for loops that use a
409     floating point index variable or a negative step.
410
411 changes in sbcl-0.9.6 relative to sbcl-0.9.5:
412   * bug fix: add a workaround to SBCL looping infinitely at startup on
413     Linux kernels with apparently buggy implementations of personality().
414     (thanks to Svein Ove Aas)
415   * bug fix: Unicode symbols are correctly printed in LDB backtraces
416     (thanks to David Lichteblau)
417   * bug fix: local bindings shadow global symbol macros for
418     macroexpansion.  (reported by Matthew D Swank on comp.lang.lisp)
419   * optimization: non-open coded uses of numeric comparison operators
420     (e.g. >) no longer cons when called with more than one parameter
421     on platforms supporting dynamic-extent allocation.
422   * enhancement: saving cores with foreign code loaded is now supported
423     on MIPS/Linux in addition to the previously supported platforms.
424   * bug fix: FIND-RESTART now tests for activity, not applicability when given
425     a restart object as identifier. (reported by Helmut Eller for CMUCL)
426   * bug fix: division by zero in sb-sprof when no samples were collected
427   * bug fix: a race when a slow to arrive sigprof signal killed sbcl
428   * bug fix: asdf-install uses CRLF as required by the HTTP spec.
429     (thanks to Alexander Kjeldaas)
430   * new feature: ignoring the return values of destructive functions
431     like NREVERSE signals a compile-time style-warning.
432     (thanks to Kevin Reid)
433   * new feature: the alignment of alien structure fields can be
434     explicitly specified. (thanks to Cyrus Harmon)
435   * bug fix: run cleanup forms (in all threads) when receiving a SIGTERM
436     and dump core on SIGQUIT
437   * threads
438     ** incompatible change: threads do not inherit values of specials
439        from their parents (see manual)
440     ** bug fix: threads stacks belonging to dead threads are freed by the
441        next exiting thread, no need to gc to collect thread stacks anymore
442     ** minor incompatible change: INTERRUPT-THREAD-ERROR-ERRNO removed
443     ** WITH-RECURSIVE-LOCK can be nested in a WITH-MUTEX for the same lock
444     ** bug fix: dynamic variable and thread start related gc lossage
445     ** bug fix: job control (SIGSTOP/SIGCONT) no longer confuses threads
446        suspended for gc
447   * fixed some bugs revealed by Paul Dietz' test suite:
448     ** SUBTYPEP is slightly more accurate on heinously complicated
449        CONS types where some of the members have uncertain (in the
450        NIL, NIL sense) type relationships to each other.
451   * GENCGC
452     ** Cores produced by SAVE-LISP-AND-DIE on GENCGC platforms are
453        no longer purified unless :PURIFY T is explicitly specified.
454     ** Non-purified cores are significantly smaller than before
455
456 changes in sbcl-0.9.5 relative to sbcl-0.9.4:
457   * new feature: timers based on Zach Beane's excellent timer package
458   * added support for the following external formats: koi8-u,
459     x-mac-cyrillic, cp437, cp850, cp852, cp855, cp857, cp860, cp861,
460     cp862, cp863, cp864, cp865, cp866, cp869, cp874, iso-8859-2,
461     iso-8859-3, iso-8859-4, iso-8859-5, iso-8859-6, iso-8859-7,
462     iso-8859-8, iso-8859-9, iso-8859-10, iso-8859-11, iso-8859-13,
463     iso-8859-14, cp1250, cp1251, cp1252, cp1253, cp1254,
464     cp1255,cp1256, cp1257, cp1258 (contributed by Ivan Boldyrev)
465   * incompatible change: a threaded SBCL will no longer revert to
466     non-threaded mode on non-NPTL systems, but refuse to start entirely.
467   * bug fix: interrupts are disabled until startup is complete; no
468     more sigsegvs when receiving a signal to soon
469   * optimization: faster 32-bit SB-ROTATE-BYTE:ROTATE-BYTE on non-x86/ppc
470     platforms
471   * bug fix: add a workaround for the memory randomization features in
472     Linux kernels >= 2.6.12 that interfere with SBCL's memory maps. This
473     workaround will only be in effect on systems with the proc filesystem
474     mounted.
475   * bug fix: printing objects of type HASH-TABLE signals a
476     PRINT-NOT-READABLE error when *READ-EVAL* is NIL.  (reported by
477     Faré Rideau)
478   * bug fix: GET-INTERNAL-REAL-TIME now works even for processes that
479     have been running for over 50 days. (reported by Gilbert Baumann)
480   * bug fix: the logic for getting names of functions gets less
481     confused when confronded with alternate-metaclass
482     funcallable-instances.  (reported by Cyrus Harmon)
483   * bug fix: FUNCTIONP and (LAMBDA (X) (TYPEP X 'FUNCTION)) are now
484     consistent, even on internal alternate-metaclass objects.
485   * bug fix: flush closure information collected by physical
486     environment analysis prepass before the main pass. (bug reported
487     by Vasile Rotaru)
488   * bug fix: compiler pack phase does not modify a hashtable, which is
489     iterated. (reported by Bryan O'Connor, fixed by Rob MacLachlan)
490   * bug fix: backquote does not optimize (LIST* x y) to CONS when x
491     may be expanded. (reported by Alexander <malishev> on c.l.l)
492   * bug fix: no more style-warnings when compiling code using LAST
493     under high-SPEED low-SPACE settings.  (reported by David Wallin
494     aka froog on #lisp)
495   * fixed some incompatibilities between SBCL's MOP and the MOP
496     specified by AMOP:
497     ** the METAOBJECT class is now implemented;
498     ** FUNCALLABLE-STANDARD-OBJECT is now a subclass of
499        STANDARD-OBJECT, as required;
500     ** the classes STANDARD-CLASS and FUNCALLABLE-STANDARD-CLASS are
501        now compatible (as required by VALIDATE-SUPERCLASS); there
502        remains a consistency requirement over the presence or absence
503        of the FUNCTION class in the superclass list of finalized
504        classes; see the manual for more details;
505     ** the :AROUND method for COMPUTE-SLOTS on
506        FUNCALLABLE-STANDARD-CLASS now honours the primary method's
507        requested slot ordering.
508   * threads
509     ** bug fix: parent thread now can be gc'ed even with a live
510        child thread
511     ** bug fix: binding a special with PROGV to no value is not
512        the same as that symbol not having been bound (thanks to
513        Hannu Koivisto)
514     ** bug fix: binding specials is thread safe (thanks to
515        Hannu Koivisto)
516     ** bug fix: interrupt handlers are now per-process, RUN-PROGRAM
517        and SB-SPROF do not die with 'no handler for signal XX in
518        interrupt_handle_now(..)' anymore
519     ** bug fix: WITH-TIMEOUT works with multiple running threads
520   * fixed some bugs revealed by Paul Dietz' test suite:
521     ** ENSURE-GENERIC-FUNCTION should take a method class object for
522        the :method-class keyword argument.
523
524 changes in sbcl-0.9.4 relative to sbcl-0.9.3:
525   * new port: the Solaris operating system on x86 processors is now
526     mostly supported, though some rough edges in the environment
527     remain.  (thanks to Daisuke Homma)
528   * enhancement: SBCL on MIPS platforms now has a much larger dynamic
529     space for its heap.  (thanks to Thiemo Seufer)
530   * optimization: SBCL on MIPS platforms now supports dynamic-extent
531     closures.  (thanks to Thiemo Seufer)
532   * minor incompatible change: eof selects abort in the debugger.
533   * minor incompatible change: *INVOKE-DEBUGGER-HOOK* is run before
534     *DEBUGGER-HOOK* => *DEBUGGER-HOOK* is not run when the debugger
535     is disabled.
536   * minor incompatible change: SB-KERNEL:INSTANCE-LAMBDA is
537     deprecated, and will go away in a future revision of SBCL.
538   * minor incompatible change: GC-ON and GC-OFF are no longer
539     implemented with a counter, it does not matter how many times gc
540     is switched on or off
541   * bug fix: discriminating functions for generic function classes
542     with non-standard methods for COMPUTE-APPLICABLE-METHODS no longer
543     make invalid assumptions about method precedence order.  (reported
544     by Bruno Haible)
545   * bug fix: TRUNCATE now correctly signals division by zero on MIPS
546     platforms.  (thanks to Thiemo Seufer)
547   * bug fix: degree sign (<U00B0>) could not be encoded in KOI8-R.
548   * bug fix: correct pathname printing with printer escaping is on.
549     (thanks to Kevin Reid)
550   * bug fix: complex VOP definitions in "user-space" no longer trigger
551     package locks.  (reported by Zach Beane)
552   * fixed bug 343: SB-KERNEL:INSTANCE-LAMBDA is no longer necessary
553     for funcallable-instance functions, and is no different from
554     regular LAMBDA.
555   * bug fix: PARSE-INTEGER no longer depends on the whitespaceness of
556     characters in the current readtable.  (reported by Nicholas Neuss)
557   * bug fix: SUBTYPEP on various CONS types returns more a more
558     accurate acknowledgment of its certainty.
559   * optimizations: REMOVE-DUPLICATES now runs in linear time on
560     lists in some cases.  This partially fixes bug 384.
561   * flush all standard streams before prompting in the REPL and the
562     debugger.
563   * bug fix: signal handling and triggering gc do not conflict
564     directly anymore, in particular a high frequency sb-sprof does
565     not prevent gc from running
566   * bug fix: DECODE-UNIVERSAL-TIME now uses a more reasonable
567     approximation for timezone and DST information between the
568     universal time epoch and the smallest negative 32-bit time_t.
569   * bug fix: ENCODE-UNIVERSAL-TIME no longer errors when passed the
570     year 1899 so long as the encoded time is non-negative.
571   * bug fix: on the x86 platform, SB-ROTATE-BYTE:ROTATE-BYTE returns
572     the correct answer for non-constant rotate amounts when performing
573     an inline 32-bit rotation.
574   * threads
575     ** bug fix: RELEASE-FOREGROUND doesn't choke on session lock if
576        there is only one thread in the session
577     ** bug fix: memory leak for streams created in one thread and
578        written to in another
579     ** bug fix: lockup when compiled with gcc4
580     ** bug fix: race that allows the gc to be triggered when gc is
581        inhibited
582     ** bug fix: one less memory fault in INTERRUPT-THREAD, again
583     ** bug fix: gc and INTERRUPT-THREAD don't hang when the RT signal
584        queue is full
585     ** bug fix: finished threads are gc'ed properly
586   * fixed some bugs revealed by Paul Dietz' test suite:
587     ** CALL-NEXT-METHOD signals an error (in safe code) when the call
588        has arguments with a different set of applicable methods from
589        the orignal arguments.
590     ** The type error thrown by MAP now has a correct expected-type
591        cell.
592     ** DISASSEMBLE now throws a TYPE-ERROR when its argument does not
593        name a compiled function.
594     ** Three MISC tests where a large bignum was improperly coerced to
595        a float that couldn't represent that bignum during type
596        derivation were fixed.
597     ** SUBTYPEP can now handle types involving the negation of a
598        list-form FUNCTION type.
599     ** SUBTYPEP also now handles certain COMPLEX type specifiers such
600        as (COMPLEX (AND RATIO (NOT FIXNUM))).
601     ** READ-BYTE and WRITE-BYTE no longer take stream designators.
602
603 changes in sbcl-0.9.3 relative to sbcl-0.9.2:
604   * New feature: Experimental support for bivalent streams: streams
605     opened with :element-type :default now allow character and binary
606     (unsigned-byte 8) I/O
607   * Support for the koi8-r external format.  (thanks to Ivan Boldyrev)
608   * Bug fix: OPEN no longer fails when *PRINT-READABLY* is T. (thanks
609     to Zach Beane)
610   * bug fix: no more highly sporadic "couldn't check whether ~S is
611     readable" when reading a stream and an interrupt hits in the middle
612     of a select system call
613   * compiler better recognizes complex arrays (reported by Eduardo
614     Muñoz)
615   * bug fix: out-of-line SB-SYS:FOREIGN-SYMBOL-ADDRESS did not work
616     for variables on SBCL built with linkage-tables. (reported by Luis
617     Oliveira)
618   * various error reporting improvements.
619   * optimizations: LOGNOR on fixnums is improved in the MIPS backend.
620     (Thanks to Thiemo Seufer)
621   * bug fix: nested reader invokations work correctly
622   * bug fix: it is possible to have simultaneous references to foreign
623     code and foreign data with the same name.
624   * threads
625     ** added x86-64 support
626     ** incompatible change: the threading api now works with thread
627        objects instead of thread ids
628     ** bug fix: threads are protected from signals and interruption when
629        starting up or going down
630     ** bug fix: a race where an exiting thread could lose its stack to gc
631     ** bug fix: don't halt on infinite error in threads if possible
632     ** fixed numerous gc deadlocks introduced in the pthread merge
633     ** bug fix: fixed thread safety issues in read and print
634     ** bug fix: debugger doesn't hang on session lock if interrupted at
635        an inappropriate moment
636     ** bug fix: run-program is now thread safe(r)
637     ** bug fix: inner with-recursive-lock no longer releases the mutex
638   * fixed a bug in (DECODE-UNIVERSAL-TIME 0) (reported by Paul Dietz)
639   * fixed some bugs revealed by Paul Dietz' test suite:
640     ** TYPE-ERRORs from signalled by COERCE now have DATUM and
641        EXPECTED-TYPE slots filled.
642     ** MULTIPLE-VALUE-SETQ always returns the primary value of the
643        values form.
644     ** MAKE-CONDITION accepts classes as type-designators.
645     ** COMPILE may never return NIL.
646     ** ENCODE-UNIVERSAL-TIME now guards against times out of Unix's
647        range before calling Unix time functions
648
649 changes in sbcl-0.9.2 relative to sbcl-0.9.1:
650   * numerous signal handling fixes to increase stability
651   * Support for EUC-JP external format.  (thanks to NIIMI Satoshi)
652   * minor incompatible change: we now correctly canonize default
653     initargs, making them be a list of (INITARG INITFORM INITFUNCTION)
654     as per the MOP, rather than the historical (INITARG INITFUNCTION
655     INITFORM).  (reported by Bruno Haible)
656   * new feature: WITH-COMPILATION-UNIT now accepts a non-standard
657     :SOURCE-PLIST option. See (DOCUMENTATION #'WITH-COMPILATION-UNIT T)
658     for more information.
659   * TRUENAME and PROBE-FILE now correctly resolve symlinks even if the
660     pathname is a directory pathname.
661   * SB-SPROF now works (more) reliably on non-GENCGC platforms.
662   * dynamic space size on PPC has been increased to 768Mb. (thanks to
663     Cyrus Harmon)
664   * SB-MOP:ENSURE-CLASS-USING-CLASS now accepts a class as the
665     :METACLASS argument in addition to a class name.  (reported by
666     Bruno Haible for CMUCL, patch for CMUCL by Gerd Moellmann)
667   * RESTART-CASE can now be wrapped around CALL-METHOD forms.
668     (reported by Bruno Haible; patch from Gerd Moellmann)
669   * bug fix: sbcl runtime can now be compiled with gcc4 (thanks to 
670     Sascha Wilde)
671   * bug fix: more cleanups to the floating point exception handling on
672     x86-64 (thanks to James Knight)
673   * bug fix: the compiler does not try to constant fold calls of
674     COERCE and BIT-* functions when they return freshly constructed
675     objects. (reported by Nikodemus Siivola and Paul Dietz)
676   * optimization: improved the MIPS versions of generic (in the
677     generic sense) arithmetic routines.  (thanks to Thiemo Seufer)
678   * optimization: direct conversion of (unsigned-byte 32) to floats on
679     the PowerPC platform.
680   * optimization: structure instances with raw slots now use less
681     memory, and probably show better memory locality.  (thanks to
682     David Lichteblau)
683   * optimization: DYNAMIC-EXTENT declarations for lists and closures
684     are treated as requests for stack allocation on the x86-64,
685     Alpha-32, PPC and SPARC platforms.
686   * contrib improvement: it's harder to cause SOCKET-CLOSE to close()
687     the wrong file descriptor; implementation of SOCKET-OPEN-P.
688     (thanks to Tony Martinez)
689   * threads
690     ** gcing a dead thread can no longer lead to lockups
691     ** threads block signals until they are set up properly
692     ** errno is no longer shared by threads
693     ** interrupt-thread restores the eflags register on x86
694     ** fixed some lockups due to gc/thread interaction
695   * fixed some bugs revealed by Paul Dietz' test suite:
696     ** invalid dotted lists no longer raise a read error when 
697        *READ-SUPPRESS* is T
698     ** signal an error if a symbol that names a declaration is used
699        as the name of a type, or vice versa
700     ** allow using the (declare (typespec var*)) abbreviation for 
701        (declare (type typespec var*)) with all type specifiers
702     ** circularity detection works properly with PPRINT-LOGICAL-BLOCK
703     ** always return NIL from PPRINT-POP when OBJECT is NIL
704     ** don't signal errors when pretty-printing malformed LABELS, 
705        FLET or MACROLET forms
706     ** declarations in a DOLIST body are also in scope for the 
707        DOLIST return-form
708     ** COMPILE-FILE accepts all pathname designators as INPUT-FILE
709        and OUTPUT-FILE
710     ** the ELEMENT-TYPE keyword argument to WITH-OUTPUT-STREAM is 
711        always evaluated
712
713 changes in sbcl-0.9.1 relative to sbcl-0.9.0:
714   * fixed cross-compiler leakages that prevented building a 32-bit
715     target with a 64-bit host compiler.
716   * fixed a bug in CLOSE :ABORT T: no longer attempts to remove files
717     opened with :IF-EXISTS :OVERWRITE.
718   * fixed bug 281: error for an invalid qualifier in a short-form method
719     combination method is not signalled until the faulty method is called.
720   * bug fix: iteration variable type inferrer failed to deal with open
721     intervals. (reported by Alan Shields)
722   * bug fix: dynamically loading (via LOAD-SHARED-OBJECT or similar)
723     "frameworks" on Mac OS X no longer causes an EXC_BAD_ACCESS if two
724     or more runtime options were provided to the sbcl binary.
725   * compiled code is not steppable if COMPILATION-SPEED >= DEBUG.
726   * contrib improvement: implement SB-POSIX:MKSTEMP (Yannick Gingras)
727   * optimization: there's now a fast-path for fixnum arguments in the
728     generic subtraction routines on x86/x86-64. (Thanks to Lutz Euler)
729   * optimization: the code generated on x86-64 is more compact thanks
730     to not outputting unneccessary prefix bytes. (Thanks to Lutz Euler)
731   * bug fix: floating-point exception handling now partly works on
732     x86-64.  (Thanks to James Knight)
733   * improvement to the MIPS backend from Thiemo Seufer: C-style
734     64-bit long long arguments and return values to alien functions
735     are now supported.
736   * fixed some bugs revealed by Paul Dietz' test suite:
737     ** the type-error signalled from WARN has a filled-in DATUM slot.
738     ** the type-error required when a stream is not associated with
739        a file has the stream as its datum.
740     ** type-errors on single-floats on x86-64 no longer have 
741        :INVALID-OBJECT as the datum
742     ** the type-errors signalled for invalid function names now have
743        a correct expected type
744     ** (SETF (DOCUMENTATION ... 'STRUCTURE)) no longer signals an error
745        for structures defined with a :TYPE. Documentation strings for
746        typed structures are no longer immediately discarded
747     ** FILE-STRING-LENGTH and STREAM-EXTERNAL-FORMAT now work on 
748        broadcast streams and synonym streams. FILE-LENGTH now also works
749        on broadcast streams.
750
751 changes in sbcl-0.9.0 relative to sbcl-0.8.21:
752   * incompatible change: the --noprogrammer option, deprecated since
753     version 0.7.5, has been removed.  Please use the equivalent
754     --disable-debugger option instead.
755   * incompatible change: finalizers and *AFTER-GC-HOOKS* are now run with
756     interrupts enabled.
757   * incompatible change: support for *BEFORE-GC-HOOKS* (that have been
758     inoperational for a while now) has been completely removed.
759   * null lexical environments are now printed as #<NULL-LEXENV>, 
760     significantly reducing the amount of clutter in typical backtraces.
761   * documentation on weak pointers, finalization, and after GC hooks
762     has been added to the manual.
763   * optimization: REPLACE on declared (UNSIGNED-BYTE 8) vectors, as well
764     as other specialized array types, is much faster.  SUBSEQ and
765     COPY-SEQ on such arrays have also been sped up.
766   * optimization: EQL is now more efficient when at least other argument 
767     is known to be of type (OR FIXNUM (NOT NUMBER)).
768   * fixed bug: the runtime is now less vulnerable to changes in the
769     size of the SBCL object on OS X, and virtual memory is reserved for
770     all spaces that need to be at a fixed address.
771   * fixed bug: finalizers are now thread-safe. (thanks to Gabor Mellis)
772   * fixed bug: finalizers and after GC hooks that cause consing are now
773     safe.
774   * fixed bug: compiler error messages and summaries are now printed to 
775     *ERROR-OUTPUT*, not *STANDARD-OUTPUT*.
776   * fixed inference of the upper bound of an iteration variable.
777     (reported by Rajat Datta).
778   * fixed bug 211e: calling local functions with duplicated constant
779     keyword argument no longer causes a bogus style warning about an
780     unused variable.
781   * fixed bug 305: INLINE/NOTINLINE declaration no longer causes local
782     ftype declaration to be disregarded. (reported by Dave Roberts)
783   * fixed bug 373: caused by erronous compilation of references to alien
784     variables in the runtime on ppc/darwin.
785   * fixed bug 376: CONJUGATE type deriver.
786   * fixed infinite looping of ALIEN-FUNCALL, compiled with high DEBUG.
787     (reported by Baughn on #lisp)
788   * a cross-compiler bug on non-x86 platforms has been identified and
789     fixed.  (thanks to Bruno Haible)
790   * improvements to the MIPS runtime code for increased stability.
791     (thanks to Thiemo Seufer)
792   * increased the maximimum compact environment size to allow
793     purify on images with large amounts of functions. (thanks to Cyrus Harmon)
794   * partial workaround for bug 135: don't name the function we're
795     calling for hairy cases of EVAL, so as not to accumulate one environment
796     entry per call to EVAL.  (reported by Kevin Reid)
797   * improvements to the x86-64 disassembler. (thanks to Lutz Euler)
798   * optimization: type testing for non-vector arrays should be faster.
799   * fixed TRACE :ENCAPSULATE NIL, added support for :ENCAPSULATE NIL
800     on x86-64
801   * bug fix: setting 31st element of a bit vector to zero did not work
802     on Alpha-32.
803   * bug fix: redefining a class definition which failed due to a
804     previous accessor / function clash now works (but see BUGS entry
805     #380 for more problems in this area).  (thanks to Zach Beane)
806   * the long form of DEFINE-METHOD-COMBINATION disables method group
807     checking when given a single method group with pattern *.  (thanks
808     to Wendall Marvel)
809   * on x86 compiler supports stack allocation of results of simple
810     calls of MAKE-ARRAY, bound to variables, declared DYNAMIC-EXTENT.
811   * support for building and running on Mac OS X 10.4 "Tiger" has been added
812     ** Binaries built on Tiger will not run on 10.2 "Jaguar" currently
813   * fixed some bugs related to Unicode integration:
814     ** the restarts for recovering from input and output encoding
815        errors only appear when there is in fact such an error to
816        handle.
817   * fixed some bugs revealed by Paul Dietz' test suite:
818     ** MISC.549 and similar: late transformation of unsafe type
819        assertions into derived types caused unexpected code
820        transformations.
821     ** SCALE-FLOAT type deriver is less wrong.
822     ** type derivers for EXP, LOG and similar functions compute result
823        types for complex arguments better.
824     ** (MISC.563) CONJUGATE type deriver works for very restricted
825        complex types.
826     ** out-of-line type testers for character strings are available.
827     ** EQUAL compiler transform understands specialness of objects
828        of type BIT-VECTOR.
829     ** accessing double-floats stored on the stack now works on x86-64.
830     ** debugger internals could sometimes create invalid lispobjs, 
831        resulting in GC crashes.
832     ** MISC.548: type check weakening can convert required type into
833        optional.
834     ** initialization forms for bindings are not in scope of free special
835        declarations.
836
837 changes in sbcl-0.8.21 (0.9alpha.1?) relative to sbcl-0.8.20:
838   * incompatible change: thread support for non-NPTL systems has
839     been removed - locking is buggy and unreliable.  A threaded 
840     SBCL build will now warn at startup and refuse to create
841     new threads, unless futex support is detected in the kernel
842   * incompatible change: the top level REPL now has only an ABORT
843     restart associated with it, not TOPLEVEL and ABORT as it used to.
844     TOP and TOPLEVEL are now available as debugger commands for 
845     returning to the top level.
846   * incompatible change: forms evaluated in the REPL now use the
847     global optimization policy.
848   * incompatible change: user- and system-initialization files are
849     no longer processed with LOAD, but by READ and EVAL; hence the
850     global optimization policy, startup package, readtable, etc, 
851     can be set by them.
852   * The .fasl file format number has been incremented because of 
853     various incompatible changes.
854   * internal entry point details and argument counts no longer appear
855     in backtraces unless explicitly requested by setting
856     SB-DEBUG:*SHOW-ENTRY-POINT-DETAILS*.
857   * built-in and standard functions no longer have names like "top
858     level local call to FOO".
859   * fixed bug 32: functions defined in non-null lexical environments
860     now have more legible printed representation
861   * fixed bug 33: functions defined in non-null lexical environemnts
862     are now more amenable to inspection by INSPECT.
863   * workaround for bug 354: XEPs no longer appear in backtraces unless
864     explicitly requested.
865   * fixed bug: receiving the signal which results from attempting to
866     write to mprotect()ed memory (SIGSEGV on Linux and some *BSDs,
867     SIGBUS on other *BSDs) on architectures where the C stack is also
868     the Lisp stack (x86 and x86-64) from foreign code no longer leads
869     to debugger confusion or wild instability.  (reported by Cheuksan
870     Wang)
871   * fixed bug: COUNT and EQUAL no longer issue compiler efficiency
872     notes when operating on objects known to be SIMPLE-BIT-VECTORs.
873     (reported by Lutz Euler)
874   * fixed bug: (TYPEP X '(MEMBER ...)) no longer returns a list in
875     compiled code. (reported by Paul Dietz)
876   * fixed bug 276b: mutating with MULTIPLE-VALUE-SETQ a binding of a
877     specialized parameter to a method to something that is not TYPEP
878     the specializer is now possible.
879   * fixed bug: the MAKE-INSTANCE optimization is now correct in the
880     face of package deletion.
881   * fixed bug: LOAD should bind *LOAD-PATHNAME* to the merged
882     pathname. (reported by David Tolpin on c.l.l)
883   * contrib improvement: the SB-SIMPLE-STREAMS contrib now defines
884     STRING-SIMPLE-STREAM and FILE-SIMPLE-STREAM as subclasses of
885     STRING-STREAM and FILE-STREAM, respectively.
886   * contrib improvement: SB-INTROSPECT handles more of SLIME's needs
887     than previously; in addition, its test suite is now run on build.
888     (thanks to Luke Gorrie)
889   * a more robust x86-64 disassembler. (thanks to Lutz Euler)
890   * optimization: added a immediate representation for single-floats 
891     on x86-64
892   * fixed some bugs revealed by Paul Dietz' test suite:
893     ** MISC.564: defined out-of-line version of %ATAN2 on x86.
894     ** attempting to create a package with a colliding nickname causes
895        correctable errors to be signalled.
896     ** MISC.572-574: :START1 and :START2 broken for simple-base-strings.
897     ** several x86-64 backend bugs related to sign-extension of immediate
898        operands.
899
900 changes in sbcl-0.8.20 (0.9alpha.0?) relative to sbcl-0.8.19:
901   * fixed inspection of specialized arrays. (thanks to Simon Alexander)
902   * fixed disassembly of SHLD and SHRD on x86.  (thanks to David
903     Lichteblau)
904   * fixed loading of multiply forward-referenced layouts. 
905     (thanks to Cheuksan Wang)
906   * fixed bug 7: less verbose COMPILE-FILE output. Additionally, the
907     output is now directed to *STANDARD-OUTPUT* as specified by ANSI. 
908     (see COMPILE-FILE documentation for details of :PRINT option)
909   * fixed bugs 19 and 317: fixed-format floating point printing is
910     more accurate.  This also fixes a bug reported by Adam Warner
911     related to the ~@F format directive.
912   * fixed bug 371: bignum print/read inconsistency. (thanks to Harald
913     Hanche-Olsen)
914   * fixed bug: SET-SYNTAX-FROM-CHAR correctly shallow-copies a
915     dispatch table if the from-char is a dispatch macro character.
916   * fixed bug: COUNT and EQUAL on bit vectors with lengths divisible
917     by the wordsize no longer ignore the last word.  (reported by Lutz
918     Euler)
919   * fixed bug in type checking of dynamic-extent variables. (reported
920     by Svein Ove Aas)
921   * optimization: sequence traversal functions use their freedom to
922     coerce function designators to functions.
923   * optimization: code with many calls to CLOS methods specialized on
924     CLOS classes has had redundant type checks removed.
925   * optimization: added declarations to speed up operations that access
926     the internal character database (for example STRING-UPCASE)
927   * optimization: comparison operations between floats and sufficiently small
928     fixnums no longer create extra rationals
929   * fixed some bugs related to Unicode integration:
930     ** portions of multibyte characters at the end of buffers for
931        character-based file input are correctly transferred to the
932        start of the buffer at the next read.
933     ** COMPILE-FILE now respects any EXTERNAL-FORMAT argument given,
934        passing it through to OPEN.
935     ** LOAD on source files likewise passes any EXTERNAL-FORMAT
936        argument given to internal calls to OPEN.
937     ** the built-in comment readers (introduced by character sequences
938        ";" and "#|") are more forgiving to encoding errors; they will
939        STYLE-WARN and then attempt to resync the stream at a character
940        boundary.  (thanks to Teemu Kalvas)
941   * fixed some bugs in the x86-64 port:
942     ** Negative short int return values from c-calls are sign-extended
943        correctly.
944     ** The stack is aligned to 16-bytes for c-calls, as required by
945        the ABI. (thanks to Cheuksan Wang)
946     ** The disassembler understands more x86-64. (thanks to Cheuksan Wang)
947     ** The regression tests use SB-ALIEN:INT instead of SB-ALIEN:INTEGER
948        for enums. (thanks to Vincent Arkesteijn)
949     ** Multiple small optimizations and bugfixes for floating point
950        operations.
951   * fixed some bugs revealed by Paul Dietz' test suite:
952     ** Space, Tab, Linefeed, Return and Page have the invalid
953        secondary constituent character trait.
954     ** SET-SYNTAX-FROM-CHAR correctly copies multiple-escape character
955        syntax.
956     ** WITH-INPUT-FROM-STRING should only update the index place on
957        normal termination.
958     ** Pretty-printing backquoted forms when *PRINT-CIRCLE* is true
959        works more reliably.
960     ** Bit-array operations (BIT-AND and similar) worked incorrectly
961        with one-dimensional arrays with fill pointers.
962     ** TYPE-OF failed on a complex with an integer realpart and a
963        RATIO imagpart.
964     ** compiler failure during type inference for the code of form
965        (IF (EQL X (THE ...)) ...) (MISC.535).
966
967 changes in sbcl-0.8.19 relative to sbcl-0.8.18:
968   * new port: SBCL now works in native 64-bit mode on x86-64/Linux
969     platform. The port supports 61-bit fixnums, large memory spaces
970     and reloading shared object files.
971   * enhancement: saving cores with foreign code loaded is now
972     supported on ppc/Darwin in addition to the previously supported
973     platforms.
974   * enhancement: the statistical profiler now walks deeper into the 
975     call stack for more meaningful call-graphs and accrued time
976     reports (x86/x86-64 only). It also now reports time spent in
977     foreign functions.
978   * enhancement: it is now possible to trace most individual methods
979     of a generic function in addition to tracing the generic function
980     itself.
981   * bug fix: invalid :DEFAULT-INITARGS are detected in compiled calls
982     to MAKE-INSTANCE.
983   * bug fix: defaulted initargs are passed to INITIALIZE-INSTANCE and
984     SHARED-INITIALIZE methods from compiled calls to MAKE-INSTANCE.
985   * bug fix: COERCE to (COMPLEX FLOAT) of a complex number no longer
986     produces an error.  (thanks to Vincent Arkesteijn)
987   * bug fix: NAMESTRING on pathnames with :WILD components in their
988     directories works correctly.  (thanks to Artem V. Andreev)
989   * fixed bug 125: compiler preserves identity of closures. (reported
990     by Gabe Garza)
991   * bug fixed: functions with &REST arguments sometimes failed with
992     "Undefined function" when compiled with (DEBUG 3). (reported by
993     Robert J. Macomber)
994   * bug fix: overflow during compiling of setting element of a bit
995     vector with constant index and value. (reported by Timmy Douglas)
996   * build fix: fixed the dependence on *LOAD-PATHNAME* and
997     *COMPILE-FILE-PATHNAME* being absolute pathnames.
998   * on x86 compiler partially supports stack allocation of dynamic-extent
999     closures.
1000   * GO and RETURN-FROM do not check the extent of their exit points
1001     when compiled with SAFETY 0.
1002   * fixed some bugs related to Unicode integration:
1003     ** encoding and decoding errors are now much more robustly
1004        handled; it should now be possible to recover even from invalid
1005        input or output to the terminal.  (thanks to Teemu Kalvas)
1006     ** provided a first cut at implementing STRING-TO-OCTETS and
1007        OCTETS-TO-STRING.  (thanks to Robert J. Macomber)
1008     ** altered the SB-MD5 contributed module slightly, changing the
1009        interface just enough for it to be supportable for builds where
1010        lisp characters are not eight bits.
1011   * fixed some bugs revealed by Paul Dietz' test suite:
1012     ** the FORMATTER-generated functions for ~V[ conditionals require
1013        the correct number of arguments.
1014     ** READ-FROM-STRING returns the mandated second value when applied
1015        to displaced strings.
1016     ** the #\Rubout and #\Backspace characters are treated as invalid
1017        constituent characters by the tokenizer.
1018
1019 changes in sbcl-0.8.18 relative to sbcl-0.8.17:
1020   * new feature: reloading changed shared object files with
1021     LOAD-SHARED-OBJECT now causes the new definitions to take effect.
1022   * new feature: references to foreign variables and functions
1023     can now be compiled and loaded before the corresponding shared 
1024     object file is loaded, as long as the foreign definitions are
1025     available at runtime.
1026   * Solaris 10 (aka SunOS 5.10) on the SPARC platform is now
1027     supported.  (thanks to Dan Debertin)
1028   * SB-ALIEN enums can now be represented in Lisp by any symbols, not
1029     just keywords.  (thanks to Vincent Arkesteijn)
1030   * fixed bug #331: structure-class instances corresponding to
1031     DEFSTRUCT forms are now created eagerly.
1032   * fixed bug #345: backtraces from calls to undefined functions work
1033     on x86 as well. Related bug #61 is now also partially fixed on x86
1034     (backtraces from throws to unknown catch tags.)
1035   * bug fix: lambda-list parsing is now stricter vrt. order and number
1036     of lambda-list keywords.
1037   * bug fix: as specified by AMOP, an error is signalled if a
1038     class-option appears multiple times in a DEFCLASS form. (reported
1039     by Bruno Haible)
1040   * bug fix: RANDOM can be compiled when the compiler derives the type
1041     of its numeric argument as a disjoint set of small integers.
1042     (reported by Paul Dietz)
1043   * bug fix: starting a core saved with shared objects loaded when
1044     those objects are not available no longer causes threaded SBCL to 
1045     hang. (reported by Sean Ross)
1046   * bug fix: evaluated FUNCTION no longer bypasses encapsulation (eg.
1047     TRACE).
1048   * bug fix: (SETF MACRO-FUNCTION) now accepts an optional environment
1049     argument, which must always be NIL. (reported by Kalle Niemitalo)
1050   * bug fix: printing 1.0d+23 no longer results in an error.
1051     (reported by Rolf Wester for CMUCL; bug fix from Raymond Toy)
1052   * bug fix: structure slot setters preserve evaluation order. (thanks
1053     to Gabor Melis)
1054   * fixed some bugs related to Unicode integration:
1055     ** RUN-PROGRAM can allow its child to take input from a Lisp
1056        stream.  (reported by Stefan Scholl)
1057     ** ASDF-INSTALL successfully downloads .tar.gz files in all
1058        locales.  (reported by Ken Causey)
1059   * fixed some bugs revealed by Paul Dietz' test suite:
1060     ** INCF, DECF and REMF evaluate their place form as specified in
1061        CLtS 5.1.3.
1062     ** FORMATTER expands ~{ ~} iteration directives with V or #
1063        parameters correctly.
1064     ** FORMATTER deals with the ~@[ ~] conditional directive where the
1065        consequent uses no arguments correctly.
1066     ** the system has a partial understanding of the (COMPLEX RATIO)
1067        type specifier.
1068     ** UPGRADED-COMPLEX-PART-TYPE obeys the lattice upgrading rules
1069        required.
1070
1071 changes in sbcl-0.8.17 relative to sbcl-0.8.16:
1072   * new feature: a build-time option (controlled by the :SB-UNICODE
1073     keyword feature, enabled by default) for building the system with
1074     support for the entire 21-bit character space defined by the
1075     Unicode consortium.
1076   * new feature: the system now has rudimentary external-format
1077     support; the primary user-visible change at this time is that
1078     characters with the high bit set (such as lower-case-e-acute) will
1079     print correctly to a terminal in a UTF-8 environment.
1080   * minor incompatible change: BASE-CHAR no longer names a class;
1081     however, CHARACTER continues to do so, as required by ANSI.
1082   * minor incompatible change: SB-DEBUG:*DEBUG-PRINT-FOO* variables
1083     are no longer supported, and SB-DEBUG:*DEBUG-PRINT-VARIABLE-ALIST*
1084     has been moved to the SB-EXT package (temporarily re-exported from
1085     SB-DEBUG).
1086   * minor incompatible change: SB-C::*COMPILER-ERROR-PRINT-FOO* variables
1087     are no longer supported: use SB-EXT:*COMPILER-PRINT-VARIABLE-ALIST*
1088     instead. 
1089   * fixed bug #351: better error-handlind and reporting for malformed
1090     LET and LET* forms.
1091   * fixed bug #350: bignum-printing is now more memory-efficient,
1092     allowing printing of very large bignums, eg. (expt 2 10000000).
1093     (reported by Bruno Haible)
1094   * fixed bug #302: better primitive-type selection for intersection
1095     types.
1096   * fixed bug #308: non-graphic characters now all have names, as
1097     required.  (reported by Bruno Haible)
1098   * bug fix: redefining a class with different superclasses now correctly
1099     removes it from the direct-subclasses of its previous superclasses.
1100     (reported by David Morse)
1101   * bug fix: (SETF FIND-CLASS) using a FORWARD-REFERENCED-CLASS as the
1102     new value now works. (reported by Bruno Haible)
1103   * bug fix: correct canonicalization of multiple non-standard slot
1104     options in DEFCLASS as per AMOP 5.4.2. (reported by Bruno Haible)
1105   * bug fix: SB-MOP:CLASS-PROTOTYPE now signals an error if the class
1106     is not yet finalized, as required by AMOP. (reported by Bruno Haible)
1107   * bug fix: SB-MOP:ALLOCATE-INSTANCE method for instances of BUILT-IN-CLASS
1108     now exists, an signals an error.
1109   * bug fix: duplicate LOOP variable bindings now signal PROGRAM-ERROR
1110     during macroexpansion for non-iteration variables as well. (reported 
1111     by Bruno Haible for CMUCL)
1112   * bug fix: Cyclic structures and unprintable objects in compiler
1113     messages no longer cause errors. (reported by Bruno Haible)
1114   * bug fix: READ, READ-PRESERVING-WHITESPACE, READ-DELIMITED-LIST,
1115     and READ-FROM-STRING all now return a primary value of NIL if
1116     *READ-SUPPRESS* is true.  (reported by Bruno Haible for CMUCL)
1117   * bug fix: Default value of EOF-ERROR-P in READ-FROM-STRING is true.
1118     (reported by Bruno Haible for CMUCL)
1119   * bug fix: ERROR now signals a TYPE-ERROR if the arguments to ERROR
1120     do not designate a condition.  (reported by Bruno Haible for
1121     CMUCL)
1122   * bug fix: UNINTERN, USE-PACKAGE, IMPORT and EXPORT all signal an
1123     SB-EXT:NAME-CONFLICT condition (subtype of PACKAGE-ERROR) in the
1124     name conflict situations in CLHS 11.1.1.2.5, and provide a restart
1125     permitting resolution in favour of any of the conflicting symbols.
1126     (reported by Bruno Haible for CMUCL)
1127   * bug fix: EQUAL compiler optimizations is less aggressive on
1128     strings which can potentially compare true despite having distinct
1129     specialized array element types.
1130   * bug fix: unit enumerations can be defined without dividing by
1131     zero.  (thanks to Vincent Arkesteijn)
1132   * FORMAT compile-time argument count checking has been enhanced.
1133     (report from Bruno Haible for CMUCL)
1134   * a partial workaround for the bug 262: the compiler does not try to
1135     inline-expand a local function doing RETURN-FROM from a deleted
1136     BLOCK. (thanks to Peter Denno for the bug report and to David
1137     Wragg for the simple test case)
1138   * fixed some bugs revealed by Paul Dietz' test suite:
1139     ** RENAME-PACKAGE allows all package designators as new package
1140        names.
1141     ** constraint propagation and lambda variable substitution are
1142        more cautious in dealing with partially deleted code.
1143     ** compiler sometimes lost reoptimization passes.
1144     ** CERROR, given a condition as condition designator, passes its
1145        remaining arguments to the continue format control without
1146        complaint.
1147     ** Case-altering FORMAT directives work correctly on non-ASCII
1148        characters.
1149     ** The REAL type specifier handles bounds outside the floating
1150        point ranges without signalling FLOATING-POINT-OVERFLOW.
1151     ** Functions with IR1-transformations can create intercomponent
1152        references to global functions.
1153     ** NIL parameter to the FORMAT directive ~^ means `unsupplied
1154        parameter'.
1155     ** FORMAT ~R treats a nil value for its first parameter correctly.
1156
1157 changes in sbcl-0.8.16 relative to sbcl-0.8.15:
1158   * enhancement: saving cores with foreign code loaded is now
1159     supported on x86/NetBSD and sparc/Linux in addition to the previously
1160     supported platforms.
1161   * bug fix: on some platforms repeated installations caused multiple
1162     copies of HTML documentation to be installed -- should not happen
1163     any more. (reported by Stefan Scholl)
1164   * bug fix: parsing self-recursive alien record types multiple times
1165     no longer causes infinite recursion. (reported by Thomas F. Burdick,
1166     original patch by Helmut Eller for CMUCL)
1167   * bug fix: stack-exhaustion detection works now on NetBSD as well.
1168     (thanks to Richard Kreuter)
1169   * bug fix: defining classes whose accessors are methods on existing
1170     generic functions in other (locked) packages no longer signals
1171     bogus package lock violations. (reported by François-René Rideau)
1172   * bug fix: special variables as DEFMETHOD parameters no longer have
1173     associated bogus type declarations. (reported by David Wragg and
1174     Bruno Haible)
1175   * bug fix: read-write consistency on streams of element-type
1176     (SIGNED-BYTE N) for N > 32.  (reported by Bruno Haible for CMUCL)
1177   * bug fix: redefiniton of the only method of a generic function with
1178     no DEFGENERIC no longer emits a full WARNING.  In addition,
1179     redefinition of generic functions with no DEFGENERIC to an
1180     incompatible lambda list now signals an error.  (thanks to Zach
1181     Beane)
1182   * bug fix: DEFGENERIC now works even when there's a function of the
1183     same name in an enclosing lexical environment.  (thanks to Zach
1184     Beane)
1185   * fixed compiler failure, caused by instrumenting code during
1186     IR1-optimization.  (Debian bug report #273606 by Gabor Melis)
1187   * optimization: added loop analysis and improved register allocation
1188   * fixed some bugs revealed by Paul Dietz' test suite:
1189     ** POSITION on displaced vectors with non-zero displacement
1190        returns the right answer.
1191     ** (SIMPLE-STRING) is a valid type specifier for sequence
1192        creators.
1193     ** *PRINT-LEVEL* handling for slotless structures is pedantically
1194        correct.
1195     ** PPRINT-INDENT accepts a request for an indentation of any REAL.
1196     ** PPRINT-TAB (and the FORMAT ~T directive) now indent by the
1197        correct amounts.
1198     ** The justification version of the FORMAT ~< directive treats
1199        non-zero minpad parameter correctly.
1200
1201 changes in sbcl-0.8.15 relative to sbcl-0.8.14:
1202   * incompatible change: SB-INT:*BEFORE-SAVE-INITIALIZATIONS* and
1203     SB-INT:*AFTER-SAVE-INITIALIZATIONS* have been renamed
1204     SB-EXT:*SAVE-HOOKS* and SB-EXT:*INIT-HOOKS*, and are now part of
1205     the supported interface.
1206   * new feature: Single-stepping of code compiled with DEBUG 2 or
1207     higher and (> DEBUG (MAX SPACE SPEED)) is now possible.
1208   * new feature: saving cores with foreign code loaded is now
1209     supported on x86/FreeBSD, x86/Linux, and sparc/SunOS. (based on
1210     Timothy Moore's work for CMUCL)
1211   * bug fix: DEFTYPE lambda-list parsing now binds unsupplied keyword
1212     parameters to * instead of NIL if no initform is supplied.
1213     (reported by Johan Bockgaard)
1214   * bug fix: DEFINE-COMPILER-MACRO lambda-list parsing now binds
1215     correctly when FUNCALL appears as the car of the form. Note:
1216     despite this FUNCALL forms are not currently subject to
1217     compiler-macro expansion. (port of Raymond Toy's fix for the
1218     same from CMUCL, reported by Johan Bockgaard)
1219   * bug fix: FOR ... ON ... -clauses in LOOP now work on dotted lists
1220     (thanks for Teemu Kalvas)
1221   * bug fix: in FORMAT ~^ inside ~:{ now correctly steps to the next
1222     case instead of terminating the iteration (thanks for Julian
1223     Squires, Sean Champ and Raymond Toy)
1224   * bug fix: incorrect expansion of defgeneric that caused a style
1225     warning. (thanks for Zach Beane)
1226   * bug fix: slot accessor effective method computation works properly
1227     for classes with multiple non-standard applicable methods on
1228     SB-MOP:SLOT-VALUE-USING-CLASS.  (reported by Ralf Mattes)
1229   * on x86 compiler supports stack allocation of results of LIST and
1230     LIST*, bound to variables, declared DYNAMIC-EXTENT. (based on
1231     CMUCL implementation by Gerd Moellmann)
1232   * fixed some bugs revealed by Paul Dietz' test suite:
1233     ** FORMAT strings with both the ~<~:;~> form of the justification
1234        directive and pretty-printing directives cause an error.
1235
1236 changes in sbcl-0.8.14 relative to sbcl-0.8.13:
1237   * incompatible change: the internal functions
1238     SB-KERNEL:32BIT-LOGICAL-FOO, intended for providing efficient
1239     logical operations on (UNSIGNED-BYTE 32) values, have been renamed
1240     to SB-KERNEL:WORD-LOGICAL-FOO.  Modular arithmetic should be used
1241     instead of the old functions.
1242   * new feature: on platforms where "dladdr" is available foreign
1243     function names now appear in backtraces.  (based on Helmut Eller's
1244     work for CMUCL)
1245   * documentation: documentation for SB-BSD-SOCKETS, SB-GRAY, 
1246     SB-SIMPLE-STREAMS, and SB-PROFILE have been integrated into the user 
1247     manual. 
1248   * documentation: ASDF manual is now distributed with SBCL.
1249   * bug fix: SBCL can now load its contributed modules with REQUIRE
1250     even if the system-provided entries have been removed from
1251     ASDF:*CENTRAL-REGISTRY*. Infinite recursion in REQUIRE is also
1252     detected.
1253   * bug fix: backtraces involving undefined functions or assembly
1254     routines are more informative.  (thanks to Brian Downing)
1255   * bug fix: mutually referent alien structures now work correctly.
1256     (reported by Rick Taube)
1257   * bug fix: structures defined by WITH-ALIEN can be referred to
1258     within other definitions in the same WITH-ALIEN.
1259   * bug fix: division operators (MOD, TRUNCATE and the like) with
1260     constant zero divisors and integer dividends no longer generate
1261     left shifts.
1262   * bug fix: provide default methods for INPUT-STREAM-P and
1263     OUTPUT-STREAM-P specialized on SB-GRAY:FUNDAMENTAL-STREAM.
1264   * bug fix: improve the detection and resolution of MOP metacycles
1265     (where effective method computation depends on the generic function
1266     having its effective method computed).  (reported by Bruno Haible)
1267   * bug fix: pass the right initargs to :BEFORE or :AFTER methods on
1268     SHARED-INITIALIZE or INITIALIZE-INSTANCE in optimized
1269     MAKE-INSTANCE constructors.  (reported by Axel Schairer for cmucl)
1270   * bug fix: pathnames with relative directory components can be
1271     represented relative to default pathnames.
1272   * optimization: in taking the GCD of bignums, reduce the two bignums
1273     to approximately the same size (using Euclid's algorithm) before
1274     applying the more sophisticated binary GCD.  (thanks to Juho
1275     Snellman)
1276   * optimization: COUNT on bitvectors now operates word-at-a-time.
1277   * optimization: ASH with a positive, but not necessarily constant,
1278     (leftwards) shift, when in a modular context, is compiled to a
1279     hardware shift.
1280   * fixed some bugs revealed by Paul Dietz' test suite:
1281     ** FORMAT variable parameters ("~V<char>") are defaulted properly
1282        if the corresponding argument is NIL.
1283     ** FORMAT directives accepting a minpad parameter treat negative
1284        values as 0.
1285     ** literal commas as character parameters to FORMAT directives are
1286        parsed correctly.
1287     ** literal spaces directly after ~<Newline> directives within a
1288        format-logical-block (~:< ~@:>) do not induce :FILL-style
1289        conditional newlines.
1290     ** PRINT-UNREADABLE-OBJECT inserts spaces as specified (and only
1291        as specified: it no longer includes conditional newlines).
1292     ** PRINC-TO-STRING binds *PRINT-READABLY* to NIL (as well as
1293        *PRINT-ESCAPE*).
1294     ** PPRINT-LOGICAL-BLOCK signals a TYPE-ERROR if its :PREFIX or
1295        :PER-LINE-PREFIX argument does not evaluate to a string.
1296
1297 changes in sbcl-0.8.13 relative to sbcl-0.8.12:
1298   * new feature: SB-PACKAGE-LOCKS. See the "Package Locks" section of
1299     the manual for details; for now, package locks can be disabled by
1300     removing :SB-PACKAGE-LOCKS in customize-target-features.lisp, but
1301     if no major problems are found then it is likely that they will be
1302     compiled in unconditionally.
1303   * major incompatible change: LOAD-FOREIGN and LOAD-1-FOREIGN are now
1304     unsupported operators on all platforms.  To load a shared library
1305     into SBCL, use SB-ALIEN:LOAD-SHARED-OBJECT.  To load a non-shared
1306     object file, link it into a shared library outside of SBCL and
1307     load it using SB-ALIEN:LOAD-SHARED-OBJECT.  (incidentally fixes
1308     bug #79)
1309   * bug workaround: ROOM T and the GC were not working together
1310     reliably, because invariants expected by the SB!VM:INSTANCE-USAGE
1311     reporting facility aren't preserved. That reporting has been
1312     disabled, so now until and unless someone figures out how to make it
1313     work reliably with the current GC, (ROOM T) is equivalent to (ROOM).
1314   * minor incompatible change: as threatened around sbcl-0.8.0, the
1315     home package of MOP-related symbols is now SB-MOP, not SB-PCL.
1316     The symbols are also exported from SB-PCL for backwards
1317     compatibility, but more so than before SB-PCL should be treated as
1318     an implementation-internal package.
1319   * fasl format changed: SBCL 0.8.13 fasls are incompatible with those
1320     of earlier versions
1321   * the SB-SPROF contrib now works on (most) non-x86 architectures.
1322     It is known as of this release not to work on the Alpha, however.
1323   * fixed bug #167: errors signalled due to illegal syntax in method 
1324     bodies are now more legible.
1325   * fixed bug #338: instances of EQL-SPECIFIER are now valid type
1326     designators and can hence be used with TYPEP.
1327   * fixed bug #333: CHECK-TYPE now ensures that the type error
1328     signalled, if any, has the right object to be accessed by
1329     TYPE-ERROR-DATUM.  (reported by Tony Martinez)
1330   * fixed bug #340: SETF of VALUES obeys the specification in ANSI
1331     5.1.2.3 for multiple-value place subforms.  (reported by Kalle
1332     Olavi Niemetalo)
1333   * fixed bug #334: programmatic addition of slots using specialized
1334     methods on SB-MOP:COMPUTE-SLOTS works for :ALLOCATION :INSTANCE
1335     and :ALLOCATION :CLASS slots.
1336   * fixed bug #269: SCALE-FLOAT scales floats by any integer, not just
1337     float exponents.  (rereported by Peter Seibel)
1338   * fixed a bug: #\Space (and other whitespace characters) are no
1339     longer considered to be macro characters in standard syntax by
1340     GET-MACRO-CHARACTER.
1341   * fixed bug: initialization of condition class metaobjects no longer
1342     causes an instance of the condition to be created.  (reported by
1343     Marco Baringer)
1344   * fixed bug: it is now possible to have slots such that
1345     SB-MOP:SLOT-DEFINITION-ALLOCATION of the effective slot
1346     description is neither :INSTANCE nor :CLASS.
1347   * fixed bug: the ctor optimization of MAKE-INSTANCE now respects
1348     user-defined methods on SLOT-BOUNDP-USING-CLASS and (SETF
1349     SLOT-VALUE-USING-CLASS), and no longer causes errors with
1350     non-standard SLOT-DEFINITION-ALLOCATION values.
1351   * fixed bugs: various race conditions handling exiting threads.  
1352     CL-PPCRE's thread torture test now passes.
1353   * fixed arguably-a-bug: GC time proportional to number of threads in 
1354     system even when most of them are idle
1355   * optimization: improved performance of BIT and SBIT on bit-vectors.
1356   * .fasl file incompatibility: The fasl file version number has
1357     been incremented because of changes associated with package locks.
1358
1359 changes in sbcl-0.8.12 relative to sbcl-0.8.11:
1360   * minor incompatible change: the system no longer provides
1361     optimization hints (conditions which are TYPEP
1362     SB-EXT:COMPILER-NOTE) for conforming code in default compilation
1363     mode; these hints are still emitted when higher SPEED optimization
1364     is requested.
1365   * new contrib module: a sampling profiler (profiling by statistical
1366     sampling, rather than by instrumenting functions) is available as
1367     the SB-SPROF contrib.  (thanks to Gerd Moellmann and Juho Snellman)
1368   * the behaviour of the standard function ED is now customizeable by
1369     third parties through a hook variable: see ED's documentation
1370     string for information on the protocol.
1371   * the compiler no longer emits efficiency notes for (FUNCALL X)
1372     when the type of X is uncertain under default optimization
1373     settings.
1374   * fixed bug 276: mutating a binding of a specialized parameter to a
1375     method to something that is not TYPEP the specializer is now
1376     possible.
1377   * fixed bugs 45d and 118: DOUBLE-FLOAT[-NEGATIVE]-EPSILON now
1378     exhibit the required behaviour on the x86 platform.  (thanks to
1379     Peter van Eynde, Eric Marsden and Bruno Haible)
1380   * fixed bug 335: ATANH now computes the inverse hyperbolic tangent
1381     even for difficult arguments.  (reported by Peter Graves)
1382   * fixed bug 141a: the backquote printer now descends quoted
1383     structure.
1384   * fixed another bug in backquote printing: no more destructive
1385     modification of the form's list structure.  (reported by Brian
1386     Downing)
1387   * fixed bug in INTERRUPT-THREAD: pin the function, so that it cannot
1388     move between its address being taken and the call to
1389     interrupt_thread, fixing a crashing race condition.
1390   * the SB-POSIX contrib implementation has been adjusted so that it
1391     no longer exhibits ridiculously poor performance when constructing
1392     instances corresponding to C structs.
1393
1394 changes in sbcl-0.8.11 relative to sbcl-0.8.10:
1395   * minor incompatible change: the sb-grovel contrib now treats C
1396     structures as alien (in the sense of SB-ALIEN) objects rather than
1397     as undistinguished (simple-array (unsigned-byte 8) (*))s.  This
1398     has implications for memory management of client code
1399     (sb-grovel-returned objects must now be manually managed) and for
1400     type safety (alien objects now have full types).
1401   * new feature: the SB-EXT:MUFFLE-CONDITIONS declaration should be
1402     used to control emission of compiler diagnostics, rather than the
1403     SB-EXT:INHIBIT-WARNINGS OPTIMIZE quality.  See the manual for
1404     documentation on this feature.  The SB-EXT:INHIBIT-WARNINGS
1405     quality should be considered deprecated.
1406   * install.sh now installs the user manual as well
1407   * (not quite a new documentable feature, but worth considering in
1408     the light of the new SB-EXT:MUFFLE-CONDITIONS declaration): the
1409     beginnings of a semantically meaningful condition hierarchy is
1410     under development, for use in SB-EXT:MUFFLE-CONDITIONS and by
1411     IDEs.
1412   * fixed bug: PARSE-NAMESTRING now accepts any valid pathaname
1413     designator as the defaults argument.
1414   * fixed bug: Displaced arrays whose displaced-to array has become
1415     too small now cause ARRAY-DIMENSION to signal an error, providing
1416     for safer bounds-checking. (reported by Bruno Haible)
1417   * fixed bug: DEFCLASS slot definitions with identical :READER and
1418     :WRITER names now signal a reasonable error. (reported by Thomas
1419     Burdick)
1420   * fixed bug: CLOSE :ABORT T on appending stream no longer causes
1421     file deletion.
1422   * fixed bug: Invalid slot specification errors now print correctly. 
1423     (thanks to Zach Beane)
1424   * fixed bug 320: Shared to local slot value transfers in class 
1425     redefinitions now happen corrently from superclasses as
1426     well. (reported by Bruno Haible)
1427   * fixed bug 316: SHIFTF now accepts VALUES forms. (reported by Bruno
1428     Haible)
1429   * fixed bug 322: DEFSTRUCT :TYPE LIST type predicates now handle
1430     improper lists correctly. (reported by Bruno Haible)
1431   * fixed bug 313: source-transform for <fun-name> was erroneously
1432     applied to a call of a value of a variable with name <fun-name>.
1433     (reported by Antonio Menezes Leitao)
1434   * fixed bug 307: The obsolete instance protocol ensures that
1435     subclasses are properly obsoleted.  (thanks to Nikodemus Siivola)
1436   * fixed bug 298, revealed by Paul F. Dietz' test suite: SBCL can
1437     remove dead unknown-values globs from the middle of the stack.
1438   * added a new restart to *BREAK-ON-SIGNALS* handling to make it
1439     easier to resume long computations after using *BREAK-ON-SIGNALS*
1440     to diagnose and fix failures.  (thanks to Nikodemus Siivola)
1441   * fixed bug reported by PFD in lisppaste #747 (and Bruno Haible from
1442     CLISP test suite): WRITE-TO-STRING is not constant-foldable.
1443   * fixed bugs in COMPLEX type specifier: UPGRADED-COMPLEX-PART-TYPE
1444     is now consistent with (COMPLEX <x>); bugs in treatment of COMPLEX
1445     MEMBER and UNION types have likewise been fixed.  (thanks to Bruno
1446     Haible)
1447   * fixed a (fairly theoretical) bug in string printing: if
1448     *PRINT-READABLY* is true, signal PRINT-NOT-READABLE if the string
1449     does not have array-element-type equal to the most general string
1450     type.
1451   * fixed bug: SET-PPRINT-DISPATCH does not immediately resolve
1452     function name. (thanks to Nikodemus Siivola)
1453   * fixed bug: compile-time format string checker failed on
1454     non-closed ~{.  (reported by Thomas F Burdick)
1455   * fixed bug: as reported by Kalle Olavi Niemitalo on #lisp IRC,
1456     don't warn on legal loop code involving more than one aggregate
1457     boolean.  (thanks to Nikodemus Siivola)
1458   * fixed bug: as reported by Peter Graves on #lisp IRC, passing a NIL
1459     in keyword position to MAKE-PACKAGE was not being reported as
1460     invalid.
1461   * fixed bug: as reported by Juan Ripoll on cmucl-imp,
1462     MULTIPLE-VALUE-BIND should be able to lexically bind lambda list
1463     keywords.
1464   * fixed bugs 280 and 312: the checking for multiple definitions in a
1465     file is less likely to become confused by uses of inline
1466     functions.
1467   * fixed bug: the #S reader macro performs the keyword coercion
1468     specified for slot names.  (reported by Kalle Niemitalo)
1469   * fixed bug: lambda lists may contain symbols whose names start with
1470     & but are not lambda-list-keywords; their occurrence triggers a
1471     STYLE-WARNING.
1472   * fixed bug 321: define-method-combination argument lambda lists do
1473     not cause invalid code to be generated when &optional or &aux
1474     variables have default values.  (reported by Bruno Haible)
1475   * fixed bug 327: system subclasses of STRUCTURE-OBJECT or CONDITION
1476     have CLOS classes; this appears also to have fixed reported
1477     instability in stack exhaustion detection.
1478   * fixed bug: the CONTROL-ERROR from ABORT, CONTINUE and
1479     MUFFLE-WARNING when no associated restart is present is now
1480     printable.
1481   * optimization: rearranged the expansion of various defining macros
1482     so that each expands into only one top-level form in a
1483     :LOAD-TOPLEVEL context; this appears to decrease fasl sizes by
1484     approximately 10%.
1485   * optimization: used a previously little-used slot in symbols to
1486     cache SXHASH values, yielding a 5-10% compiler speedup.  (thanks
1487     to Juho Snellman)
1488   * fixed some bugs revealed by Paul Dietz' test suite:
1489     ** MAKE-INSTANCES-OBSOLETE returns the class name when called with 
1490        a symbol.
1491     ** Fixed an optimization bug related to inheritance of initforms
1492        from local to shared slots.
1493     ** FILE-POSITION works as specified on BROADCAST-STREAMs.
1494     ** CAST optimizer forgot to flush argument derived type.
1495     ** print/read consistency on floats is now orders of magnitude
1496        more likely.  (thanks also to Bruno Haible for a similar report
1497        and discussions)
1498     ** removed stack cleaning in the cleanup part of UNWIND-PROTECT.
1499     ** IMAGPART is specified (infelicitously) to return (* 0 <thing>)
1500        for objects of type REAL.  Make it so.
1501     ** SXHASH is specified (infelicitously) to respect similarity,
1502        which means that (SXHASH 0.0) must equal (SXHASH -0.0).  Make
1503        it so.  (thanks to Markus Ziegler)
1504     ** on the Alpha, the compiler succeeds in compiling functions
1505        returning a known number of arguments greater than 63.
1506     ** fixed handling of invalid NIL arguments in keyword position
1507        in local calls.
1508     ** fixed non-pretty printing of arrays with *PRINT-RADIX* being
1509        true.
1510     ** provided a readably-printable representation for RANDOM-STATE
1511        objects.
1512     ** ensured that pathnames, where they have a namestring, always
1513        print using #P"..." syntax.
1514
1515 changes in sbcl-0.8.10 relative to sbcl-0.8.9:
1516   * Support for the forthcoming 2.0 version of the NetBSD kernel
1517     running on x86 hardware has been added.  (thanks to Perry
1518     E. Metzger most immediately, and others for their past work)
1519   * SBCL now runs on OpenBSD 3.4. (Thanks to Scott Parish; 3.4 is the
1520     current release version; SBCL's OpenBSD support had been broken 
1521     since about the time of OpenBSD's switch to ELF binary format.)
1522   * [placeholder for DX summary]
1523     ** user code with &REST lists declared dynamic-extent, under high
1524        speed or space and low safety and debug optimization policy.
1525   * The manual has been converted to Texinfo format and the debugger
1526     chapter from the cmucl manual has been added.
1527   * A facility has been added to extract documentation strings from
1528     sbcl and store them as Texinfo-formatted snippets for inclusion in
1529     the manual (via Texinfo's @include directive)
1530   * bug fix: compiler emitted division in optimized DEREF.  (thanks for
1531     the test case to Dave Roberts)
1532   * bug fix: multidimensional simple arrays loaded from FASLs had fill
1533     pointers.  (reported by Sean Ross)
1534   * bug fix: PROFILE output is printed nicely even for large numerical
1535     values.  (thanks to Zach Beane)
1536   * bug fix: streams with element-type (SIGNED-BYTE <N>) for <N>
1537     greater than 32 handle EOF correctly.
1538   * bug fix: on X86 an immediate argument of the IMUL instruction is
1539     correctly printed in disassembly. (thanks to Lutz Euler)
1540   * bug fix: class slots in redefined classes preserve their old
1541     values.  (thanks to Bruno Haible and Nikodemus Siivola)
1542   * bug fix: compilation of funcalls of CXX+R (e.g. CDDR) now
1543     succeeds.  (reported by Marco Baringer)
1544   * fixed some bugs revealed by Paul Dietz' test suite:
1545     ** READ-SEQUENCE now works on ECHO-STREAMs.
1546     ** RATIONALIZE works more according to its specification.  (thanks
1547        to Bruno Haible)
1548
1549 changes in sbcl-0.8.9 relative to sbcl-0.8.8:
1550   * deprecation of old extension: *DEBUG-PRINT-LEVEL* and
1551     *DEBUG-PRINT-LENGTH* are now deprecated in favor of the new, more
1552     general SB-DEBUG:*DEBUG-PRINT-VARIABLE-ALIST* mechanism. (This
1553     should matter to you only if you rebind the printer control
1554     variables and then find you want different bindings in the 
1555     debugger than in the ordinary execution of your program.)
1556   * The runtime build system has been tweaked to support building
1557     (on SPARC/SunOS) using a C compiler which invokes Sun's own
1558     assembler and linker.  (thanks to Nikodemus Siivola)
1559   * Unbound, undefined, undeclared variables now trigger full
1560     WARNINGs, not just STYLE-WARNINGs, on the assumption that this is
1561     more often programmer error than deliberate exploitation of undefined
1562     behaviour.
1563   * optimization: the hash algorithm for strings has changed to one
1564     that is less vulnerable to spurious collisions.  (thanks to Juho
1565     Snellman)
1566   * optimization: VECTOR-POP, VECTOR-PUSH-EXTEND and REPLACE do less
1567     needless bounds checking.  (thanks to Juho Snellman)
1568   * optimization: implemented multiplication as a modular
1569     (UNSIGNED-BYTE 32) operation on the PPC backend.
1570   * fixed some bugs revealed by Paul Dietz' test suite:
1571     ** ADJUST-ARRAY now copies the datum in a zero rank array if
1572        required.
1573     ** ADJUST-ARRAY no longer adjusts non-adjustable arrays.
1574     ** MAKE-STRING-INPUT-STREAM accepts NIL as a value for :END.
1575     ** MAKE-STRING-INPUT-STREAM functions correctly for strings with
1576        element-type NIL.
1577     ** CLEAR-INPUT accepts NIL and T for its (optional) stream
1578        argument.
1579     ** Ratios can now be printed correctly with *PRINT-BASE* bound to
1580        2, 8 or 16.
1581     ** ECHO-STREAMs no longer attempt to echo the end of file value to
1582        their output stream on EOF from read.
1583     ** CONCATENATED-STREAM-STREAMS discards constituent streams which
1584        have been read to end-of-file.
1585     ** CLOSE works as expected on the null CONCATENATED-STREAM, and on
1586        STRING-STREAMS.
1587     ** Printing symbols with *PRINT-CASE* :CAPITALIZE respects the
1588        description of determination of which consecutive characters
1589        constitute a word.
1590     ** Printing the "Space" character with escaping on now yields "#\\ ", 
1591        rather than "#\\Space", as mandated by ANSI 22.1.3.2.
1592     ** Reading floating-point numbers with *READ-BASE* set to a number
1593        less than 10 works correctly.
1594     ** Reading floating-point numbers with *READ-BASE* set to a number
1595        more than 10 works correctly.
1596     ** Printing with *PRINT-READABLY* targets the standard readtable, not
1597        the readtable currently in effect.
1598
1599 changes in sbcl-0.8.8 relative to sbcl-0.8.7:
1600   * minor incompatible change: parsing of namestrings on a physical
1601     (Unix) host has changed; numbers after the final #\. in a
1602     namestring are no longer interpreted as a version field.  This is
1603     intented to be largely invisible to the user, except that the
1604     meaning of the namestring "*.*.*" has changed: it now refers to a
1605     pathname with :TYPE :WILD :NAME #<pattern "*.*">.  This namestring
1606     should usually be replaced by 
1607       (make-pathname :name :wild :type :wild :version :wild)
1608     with the added benefit that this is more likely to be portable.
1609     As a consequence of this change, the :IF-EXISTS :NEW-VERSION
1610     option to OPEN now signals an error if the file being opened
1611     exists; this may have an impact on existing code.
1612   * fixed bug 190: RUN-PROGRAM should now work properly, respecting
1613     signals received, on the PowerPC platforms (both Linux and
1614     Darwin).  (thanks to Pierre Mai for pointing out the location of
1615     the error)
1616   * several fixes on OS X: The system now builds and runs cleanly on
1617     Panther (10.3), and works around sigreturn bug (no more SIGFPEs).
1618     (thanks to Brian Mastenbrook)
1619   * bug fix: DECODE-UNIVERSAL-TIME now accepts timezone arguments with
1620     second-resolution: integer multiples of 1/3600 between -24 and 24.
1621     (thanks to Vincent Arkesteijn)
1622   * bug fix: functions =, /=, <, <=, >, >= did not check the argument
1623     type when called with 1 argument; PEEK-CHAR checked type of
1624     PEEK-TYPE only after having read first character from a
1625     stream.  (reported by Peter Graves)
1626   * bug fix: the garbage collector now has much better locality
1627     behaviour, and in particular no longer treats all memory as being
1628     exhausted when many small objects point to each other in a deeply
1629     recursive manner.
1630   * bug fix: arrays specialized on (UNSIGNED-BYTE 15) are now
1631     recognized as being TYPEP their class.
1632   * bug fix: the PUSHNEW documentation string has been corrected.
1633     (thanks to Vincent Arkesteijn)
1634   * bug fix: defaulting of the value for the last of an atypically
1635     large number of multiple values being bound was not being
1636     performed correctly on the Alpha or PPC platforms
1637   * optimization: implemented multiplication as a modular
1638     (UNSIGNED-BYTE 32) operation on the x86 backend.
1639   * optimization: SEARCH on simple-base-strings can now be open-coded.
1640     (see also contrib/compiler-extras.lisp for inspiration for
1641     teaching the compiler about the Boyer-Moore algorithm).
1642   * value, returned by MAX (and MIN) called with several EQUALP, but
1643     not EQL, arguments now does not depend on compiler settings.
1644   * fixed some bugs revealed by Paul Dietz' test suite:
1645     ** in stack analysis liveness information is propagated from
1646        non-local entry points.
1647     ** pathwise CAST removing failed when the CAST node did not start
1648        a block.
1649     ** INPUT-STREAM-P, OUTPUT-STREAM-P, STREAM-ELEMENT-TYPE and
1650        OPEN-STREAM-P signal a TYPE-ERROR if their argument is not a
1651        stream.
1652     ** LOAD-LOGICAL-PATHNAME-TRANSLATIONS returns NIL if the logical
1653        host is already defined.
1654     ** RENAME-FILE works on streams instead of signalling an internal
1655        type error.
1656     ** PEEK-CHAR uses the current readtable when determining whether
1657        or not a character is whitespace.
1658     ** MERGE-PATHNAMES handles the case when the pathname does not
1659        specify a name while the default-pathname specifies a version.
1660     ** Pathnames now stand a better chance of respecting print/read
1661        consistency.
1662     ** Attempting to use standardized file system operators with a
1663        pathname with invalid :DIRECTORY components signals a
1664        FILE-ERROR.
1665     ** OPEN :DIRECTION :IO no longer fails to work on non-existent
1666        files.
1667     ** DIRECTORY on logical pathnames is more correct.
1668     ** CLEAR-INPUT, CLEAR-OUTPUT, FINISH-OUTPUT and FORCE-OUTPUT
1669        signal a TYPE-ERROR if their argument is not a stream.
1670     ** READ-BYTE and WRITE-BYTE signal a TYPE-ERROR if their stream
1671        designator argument does not designate a stream.
1672     ** OPEN-STREAM-P and INPUT-STREAM-P on synonym streams work by
1673        examining the synonym.
1674     ** STREAM-ELEMENT-TYPE and FRESH-LINE on broadcast-streams now
1675        work as specified.
1676     ** OPEN and WITH-OPEN-STREAM allow opening streams with
1677        element-type larger than ([UN]SIGNED-BYTE 32).
1678
1679 changes in sbcl-0.8.7 relative to sbcl-0.8.6:
1680   * When built with the :SB-FUTEX feature, threaded builds now take 
1681     advantage of the "fast userspace mutex" facility in Linux kernel 2.6
1682     for faster/more reliable mutex and condition variable support.
1683   * Incompatible change (but one you probably shouldn't have been using
1684     anyway): the interface and code for arbitrating between multiple
1685     threads in the same user session has been redesigned.
1686   * bug fix: GET-SETF-EXPANSION no longer throws an internal type
1687     error when called without an explicit environment argument.
1688     (thanks to Nikodemus Siivola)
1689   * bug fix: buffered :DIRECTION :IO streams are less likely to become
1690     confused about their position.  (thanks to Adam Warner and Gerd 
1691     Moellmann)
1692   * bug fix: Pretty printing backquoted forms with unquotations in the
1693     argument list position of various code constructs such as LAMBDA
1694     now works correctly.  (reported by Paul Dietz)
1695   * bug fix: Pretty printing unquotations no longer loses all
1696     stream position information.
1697   * optimization: performance of string output streams is now less
1698     poor for multiple small sequence writes.
1699   * optimization: performance of CSUBTYPEP in the presence of complex
1700     expressions involving CONS and NOT many times has been improved.
1701     (reported by Paul Dietz)
1702   * ASDF-INSTALL bug fix: now parses *PROXY* properly.  (thanks to
1703     Sean Ross)
1704   * SB-SIMPLE-STREAMS enhancement: simple-streams can now be used as
1705     streams for the REPL, for the debugger, and so on.  (thanks to
1706     David Licteblau)
1707   * DEFINE-CODITION is more efficient.  (thanks to Brian Mastenbrook)
1708   * fixed some bugs revealed by Paul Dietz' test suite:
1709     ** the value of the :REHASH-THRESHOLD argument to MAKE-HASH-TABLE
1710        is ignored if it is too small, rather than propagating through
1711        to cause DIVIDE-BY-ZERO or FLOATING-POINT-OVERFLOW errors.
1712     ** extremely complex negations of CONS types were not being
1713        sufficiently canonicalized, leading to inconsistencies in
1714        SUBTYPEP.
1715     ** VALUES tranformer lost derived type.
1716
1717 changes in sbcl-0.8.6 relative to sbcl-0.8.5:
1718   * fixed a bootstrapping bug: the build process no longer assumes
1719     that the various BOOLE-related constants have the same value in
1720     host and target lisps.  (noted by Paul Dietz' test suite on an
1721     SBCL binary built from CLISP)
1722   * The system can now be dynamically linked on the MIPS platform,
1723     which enables dynamic loading of foreign code from Lisp.  (thanks
1724     to Ralf Baechle for discussions on the MIPS ABI)
1725   * The system now records debugging information for its own source
1726     files in a filesystem-position-independent manner, relative to 
1727     the "SYS" logical host.
1728   * fixed a compiler bug: MV-LET convertion did not check references
1729     to the "max args" entry point.  (reported by Brian Downing)
1730   * tweaked disassembly notes to be less confident about proclaiming
1731     some instruction as an LRA.  (thanks to Brian Downing)
1732   * contrib update: SB-ACLREPL is now threadsafe; multiple listeners
1733     now each have their own history, command character, and other
1734     characteristics.  (thanks to David Lichteblau)
1735   * fixed some bugs revealed by Paul Dietz' test suite:
1736     ** compiler failure in compiling LOGAND expressions including a
1737        constant 0
1738     ** Implementation of ASH-MOD32 on X86 and PPC did not work for the
1739        shift greater than 32.
1740     ** FLUSH-DEST did not mark blocks for type check regeneration.
1741     ** HANDLER-CASE failed to accept declarations in handler clauses
1742        in some circumstances.
1743
1744 changes in sbcl-0.8.5 relative to sbcl-0.8.4:
1745   * New code in contrib/sb-introspect (still probably not entirely
1746     stable yet) provides some support for smart Lisp development 
1747     environments like SLIME.
1748   * The conditions signalled for errors occurring when loading .fasl
1749     files have been systematized (inheriting from SB-EXT:INVALID-FASL)
1750     in a way which should help ASDF recover gracefully.
1751   * The REQUIRE/PROVIDE behavior of *MODULE-PROVIDER-FUNCTIONS* 
1752     stuff has been cleaned up. If you code contrib/ stuff, this might 
1753     affect you, and you can look at contrib/README, contrib/STANDARDS, 
1754     and/or the 0.8.4.27 diff to check.
1755   * In full calls the compiler now does not generate checks for declared
1756     argument types for all arguments.
1757   * various threading fixes
1758     ** and some experimental patches which didn't make it into 
1759        the main tree for this release, but which are shipped in 
1760        contrib/experimental-thread.patch as a possible fix for some
1761        failures (deadlock, spinning...) in GC-intensive multithreaded
1762        applications.
1763   * fixed PPC build problem (source code incompatibility of different 
1764     library versions): added offsetof() hackery which attempts to divine 
1765     where glibc maintainers put uc_mcontext today 
1766   * fixed bug 282: compiler does not trust type assertions while passing
1767     arguments to a full call.
1768   * fixed bug 261: compiler allows NIL or "no value" to be accepted for
1769     &OPTIONAL VALUES type parameter.
1770   * fix bug 214: algorithm for noting rejected templates is now more
1771     similar to that of template seletion. (also reported by rydis on
1772     #lisp)
1773   * fixed bug 141b: printing backquoted information readably and prettily
1774     inserts a space where necessary.
1775   * bug fix: obviously wrong type specifiers such as (FIXNUM 1) or
1776     (CHARACTER 10) are now reported as errors, rather than propagated
1777     as unknown types.  (reported by piso on #lisp)
1778   * bug fix: the :IF-EXISTS argument to OPEN now behaves correctly
1779     with values NIL and :ERROR.  (thanks to Milan Zamazal)
1780   * fixed bug 191c: CLOS now does proper keyword argument checking as
1781     described in CLHS 7.6.5 and 7.6.5.1.
1782   * bug fix: LOOP forms using NIL as a for-as-arithmetic counter no
1783     longer raise an error; further, using a list as a for-as-arithmetic
1784     counter now raises a meaningful error.
1785   * fixed bug 213a: even fairly unreasonable CONS type specifiers are
1786     now understood by sequence creation functions such as MAKE-SEQUENCE
1787     and COERCE.
1788   * fixed bug 46k: READ-BYTE now signals an error when asked to read from
1789     a STRING-INPUT-STREAM.
1790   * compiler enhancement: SIGNUM is now better able to derive the type
1791     of its result.
1792   * type declarations inside WITH-SLOTS are checked.  (reported by
1793     salex on #lisp)
1794   * fixed some bugs revealed by Paul Dietz' test suite:
1795     ** incorrect optimization of TRUNCATE for a positive first
1796        argument and negative second.
1797     ** compiler failure in let-convertion during flushing dead code.
1798     ** compiler failure while deriving type of TRUNCATE on an
1799        interval, containing 0.
1800     ** ASH of a negative bignum by a negative bignum count now returns
1801        -1, not 0.
1802     ** intersection of CONS types now canonicalizes properly, fixing
1803        inconsistencies in SUBTYPEP.
1804
1805 changes in sbcl-0.8.4 relative to sbcl-0.8.3:
1806   * incompatible change: The --disable-debugger command line
1807     option now clobbers the debugger at a more fundamental
1808     level, by redefining #'INVOKE-DEBUGGER instead of by 
1809     rebinding *DEBUGGER-HOOK*. The main difference is that BREAK
1810     is specified by ANSI to ignore *DEBUGGER-HOOK* and
1811     INVOKE-DEBUGGER regardless. Under the old system, BREAK would
1812     enter the debugger REPL and then suffer recursive errors
1813     because *DEBUG-IO* is also messed up in --disable-debugger mode;
1814     while under the new system, BREAK in --disable-debugger mode
1815     terminates the system just as an unhandled error would.
1816   * fixed compiler performance when processing loops with a step >1;
1817   * bug fix: DOCUMENTATION now retrieves generic function
1818     documentation.  Also, DOCUMENTATION and (SETF DOCUMENTATION)
1819     support has been systematized, and now supports the methods
1820     specified by ANSI, along with a default method and a method for
1821     slot documentation.  (reported by Nathan Froyd)
1822   * bug fix: effective methods associated with a generic function are
1823     no longer cached over a change of that generic function's method
1824     combination.  (reported by Andreas Fuchs)
1825   * bug fix: RUN-PROGRAM now does not fail if some element in $PATH
1826     names a non-existent directory.  (thanks to Andreas Fuchs)
1827   * bug fix: ROUND and TRUNCATE could, under certain circumstances on
1828     the PPC platform, lead to stack corruption; this has been fixed.
1829     (reported by Rainer Joswig)
1830   * bug fix: ASH on an (UNSIGNED-BYTE 32) with a shift of -32 or lower
1831     no longer ever returns 1 instead of 0.  (thanks to Lars Brinkhoff)
1832   * fixed bug 285: TRUNCATE on bignum arguments, and indeed bignum
1833     arithmetic in general, is now much more reliable on the PPC
1834     platform.
1835   * bug fix: LOGCOUNT on (UNSIGNED-BYTE 64) objects on the Alpha 
1836     platform now returns the right answer.
1837   * optimization: restored some effective method precomputation in
1838     CLOS (turned off by an ANSI fix in sbcl-0.8.3); the amount of
1839     precomputation is now tunable.
1840   * optimization: compiler-internal data structure use has been
1841     reviewed, and changes have been made that should improve the
1842     performance of the compiler by about 20%.
1843   * optimization: performance of FILL (and :INITIAL-ELEMENT) on
1844     simple-base-strings and simple-bit-vectors is improved.
1845   * optimization: the optimization of 32-bit logical and arithmetic
1846     functions introduced in version 0.8.3 on the x86 has been
1847     implemented on the mips, ppc and sparc platforms; an
1848     implementation of the same facility, but for 64-bit arithmetic,
1849     has been added for the alpha.
1850   * microoptimization: the compiler is better able to make use of the
1851     x86 LEA instruction for multiplication by constants.
1852   * bug fix: in some situations compiler did not report usage of
1853     generic arithmetic in (SPEED 3) policy.
1854   * bug 145b fix: compiler used wrong type specifier while converting
1855     MEMBER-types to numeric.
1856   * bug fix: COMPILE-FILE must bind *READTABLE*. (reported by Doug
1857     McNaught)
1858   * bug fix: (SETF AREF) on byte-sized-element arrays with constant 
1859     index argument now works properly on the Alpha platform.
1860   * bug fix: floating point exception treatment on the Alpha platform
1861     is improved.
1862   * bug fix: FILE-POSITION works much better on string input and 
1863     output streams.  (thanks to Nikodemus Siivola)
1864   * bug fix: many threading/garbage collection symptoms sorted.  
1865     SB-THREAD:INTERRUPT-THREAD now safe to call on a thread that 
1866     might be pseudo-atomic.
1867   * internal change: Stopping for GC is now done with signals not 
1868     ptrace. GC is now done in whichever thread wanted it, instead of
1869     in the parent. 
1870   * bug fix: GC hooks (missing since 0.8) reinstated, so finalizers 
1871     work again.
1872   * bug fix: result form in DO is not contained in the implicit
1873     TAGBODY.
1874   * incompatible change: ICR structure is changed; the value part of
1875     CONTINUATION is now called LVAR; corresponding functions are
1876     renamed (e.g. SB-C::CONTINUATION-TYPE has become SB-C::LVAR-TYPE).
1877   * added type deriver for ISQRT (thanks to Robert E. Brown).
1878   * bug fix: better support for loading from the command line when an
1879     initialization file sets (READTABLE-CASE *READTABLE*).  (thanks 
1880     to Adam Warner)
1881   * fixed some bugs revealed by Paul Dietz' test suite:
1882     ** the RETURN clause in LOOP is now equivalent to DO (RETURN ...).
1883     ** ROUND and FROUND now give the right answer when given very
1884        small float arguments.
1885     ** (FLOAT X) for X of type DOUBLE-FLOAT now returns X in all
1886        circumstances.
1887     ** optimizer for (EXPT X 0) did not work for X not of type FLOAT.
1888     ** (GCD 0 <negative-integer>) returned <negative-integer>.
1889     ** LCM should return a non-negative integer.
1890     ** PARSE-INTEGER returned the index of a terminator instead of the
1891        upper bounding index of a substring in case :JUNK-ALLOWED NIL.
1892     ** PARSE-INTEGER returned an incorrect index being applied to a
1893        displaced string.
1894     ** LCM with two arguments of 0 returns 0 rather than signalling
1895        DIVISION-BY-ZERO.
1896     ** unsigned addition of a 32-bit constant with the high bit set no
1897        longer causes an internal compiler error on the x86.
1898     ** LOGBITP accepts a non-negative bignum as its INDEX argument.
1899     ** compiler incorrectly derived types of DPB and DEPOSIT-FIELD
1900        with negative last argument.
1901     ** byte specifiers with zero size and position no longer cause
1902        an error during type derivation.
1903     ** bignum multiplication on the Alpha platform now returns the
1904        right answer.
1905   * porting: The system now builds on SuSE AMD64, although it still
1906     generates a 32-bit binary.
1907   * .fasl file incompatibility: The fasl file version number has
1908     been incremented (because of the changes to internal compiler
1909     data structures referred to above).
1910
1911 changes in sbcl-0.8.3 relative to sbcl-0.8.2:
1912   * SBCL now builds and runs on MacOS X (version 10.2), or perhaps
1913     more accurately, on the Darwin kernel running on PowerPC hardware.
1914     (thanks to Brian Mastenbrook, Pierre Mai and Patrik Nordebo)
1915   * Compiler code deletion notes now signal a condition of type
1916     SB-EXT:CODE-DELETION-NOTE (a subtype of SB-EXT:COMPILER-NOTE) with
1917     an associated MUFFLE-WARNING restart.
1918   * The compiler now performs limited argument count validation of
1919     constant format strings in FORMAT, and where appropriate in ERROR, 
1920     CERROR and WARN.  (thanks to Gerd Moellmann)
1921   * New ASDF-INSTALL contrib can be used for automatic download and 
1922     installation of third-party Lisp code from CCLAN or other sites
1923     via CLiki.
1924   * Threaded builds (:SB-THREAD) now support SB-THREAD:INTERRUPT-THREAD,
1925     which forces another thread to execute a function supplied by the
1926     caller.
1927   * bug 75 fix: WITH-OUTPUT-TO-STRING (and MAKE-STRING-OUTPUT-STREAM)
1928     now accept and act upon their :ELEMENT-TYPE keyword argument.
1929     (reported by Martin Atzmueller, Edi Weitz)
1930   * bug fix: FILE-POSITION now accepts position designators up to
1931     ARRAY-DIMENSION-LIMIT or the extreme of the off_t range, whichever
1932     is the greater.  (thanks to Patrik Nordebo)
1933   * bug fix: MAKE-ARRAY ignored :INITIAL-CONTENTS NIL. (reported by
1934     Kalle Olavi Niemitalo)
1935   * bug fix: the CLASS-PROTOTYPE of the GENERIC-FUNCTION class is now
1936     printable.  (reported by Eric Marsden)
1937   * bug fix in sb-posix: mmap() now works on systems with a 64-bit
1938     off_t, including Darwin and FreeBSD.  (thanks to Andreas Fuchs)
1939   * x86 bug fix in control stack exhaustion checking: now shows backtrace
1940   * bug fix in WITH-TIMEOUT: now the body can have more than one form.
1941     (thanks to Stig Sandoe)
1942   * bug fix in READ-SEQUENCE: READ-SEQUENCE following PEEK-CHAR or
1943     UNREAD-CHAR now correctly includes the unread character in the
1944     target sequence.  (thanks to Gerd Moellmann)
1945   * bug fix in threaded builds: the system can now be suspended and
1946     resumed by shell job control with minimal disruption.
1947   * bug fixes in times and timezones >2038AD
1948   * better handling of "where is GNU make?" problem in build scripts
1949     (thanks to Nikodemus Siivola)
1950   * new optimization: inside a named function any reference to a
1951     function with the same name is considered to be a self-reference;
1952     this behaviour is controlled with SB-C::RECOGNIZE-SELF-CALLS
1953     optimization quality.
1954   * new optimization on x86: logical functions and + now have
1955     optimized (UNSIGNED-BYTE 32) versions, which are automatically
1956     used when the result is truncated to 32 bits.
1957   * VALUES declaration is partially enabled.
1958   * fixes in SB-GROVEL (thanks to Andreas Fuchs)
1959   * fixed some bugs revealed by Paul Dietz' test suite:
1960     ** The system now obeys the constraint imposed by
1961        UPGRADED-ARRAY-ELEMENT-TYPE that the upgraded array element
1962        types form a lattice under type intersection.
1963     ** FFLOOR, FTRUNCATE, FCEILING and FROUND work with integers.
1964     ** ASSOC now ignores NIL elements in an alist.
1965     ** CEILING now gives the right answer with MOST-NEGATIVE-FIXNUM
1966        and (1+ MOST-POSITIVE-FIXNUM) answers.
1967     ** The addition of a method with invalid qualifiers to a generic
1968        function does not cause an error to be signalled immediately;
1969        a warning is signalled, and the error is generated only on
1970        calling the generic function.
1971   * changed .fasl file version number, in part to add type codes for
1972     new array subtypes UNSIGNED-BYTE 7, 15, 29, and 31 mandated by 
1973     obscure ANSI requirements
1974
1975 changes in sbcl-0.8.2 relative to sbcl-0.8.1:
1976   * fixed bug 148: failure to inline-expand a local function left
1977     garbage, confusing the compiler.
1978   * fixed bugs 3cd: structure slot readers perform type check if the
1979     slot can have an invalid value (i.e. it is either not initialized
1980     or can be written with a less specific slot writer).
1981   * bug fix: the compiler now traps array references to elements off
1982     the end of an array; previously, the bounds checking in some
1983     circumstances could go off-by-one.
1984   * improved MACHINE-VERSION, especially on Linux (thanks to Lars
1985     Brinkhoff)
1986   * type declarations for array element types now obey the description
1987     on the CLHS page "Declaration TYPE", as per discussions on
1988     sbcl-help around 2003-05-08.  This means that a declaration 
1989     (TYPE (ARRAY FOO) BAR) means that, within the scope of the
1990     declaration, all references to BAR will be asserted or assumed
1991     (with THE, so dependent on compiler policy) to involve objects of
1992     type FOO.  Note that no such declaration is implied in 
1993     (MAKE-ARRAY .. :ELEMENT-TYPE 'FOO).
1994   * declared types of functions from the "Conditions"
1995     chapter. (reported by Paul Dietz)
1996   * bug fix: CERROR accepts a function as its first argument.
1997   * bug fix: NTH an NTHCDR accept a bignum as index
1998     arguments. (reported by Adam Warner)
1999   * optimization: character compare routines now optimize comparing
2000     against a constant character. (reported by Gilbert Baumann)
2001   * bug fix: (SETF AREF) on byte-sized-element arrays with constant index
2002     argument now works properly on the MIPS platform.
2003   * fixed compiler failure on (TYPEP x '(NOT (MEMBER 0d0))).
2004   * repeated evaluation of the same DEFSTRUCT, a slot of which is
2005     declared to have a functional type, does not cause an error
2006     anymore.
2007   * fixed bug: sometimes MAKE-INSTANCE did not work with classes with
2008     many :DEFAULT-INITARGS. (reported by Istvan Marko)
2009   * fixed bug: if last continuation of a deleted block has a
2010     destination, this destination should be deleted too. (reported by
2011     ohler on #lisp)
2012   * fixed a bug in the bootstrap process: the host compiler's values
2013     of ARRAY-DIMENSION-LIMIT and ARRAY-TOTAL-SIZE-LIMIT no longer leak
2014     into the newly-built SBCL. (reported by Eric Marsden on #lisp,
2015     test case from Patrik Nordebo)
2016   * improved the ability of the disassembler on the PPC platform to
2017     provide helpful disassembly notes.
2018   * SB-MOP:CLASS-PROTOTYPE on built-in-classes returns an instance of
2019     the class in more cases than previously.
2020   * bug fix: FILE-POSITION now understands :START and :END for
2021     STRING-INPUT-STREAMs.  (thanks to Nikodemus Siivola)
2022   * bug fix: (SIGNED-BYTE 8) streams no longer return (UNSIGNED-BYTE
2023     8) data.  (thanks to David Lichteblau)
2024   * bug fix: it is possible to add a method to a generic function
2025     without lambda list.
2026   * bug fix: reader failed to signal END-OF-FILE inside an
2027     object representation. (reported by Nikodemus Siivola)
2028   * fixed some bugs revealed by Paul Dietz' test suite:
2029     ** LAST and [N]BUTLAST should accept a bignum.
2030     ** condition slot accessors are methods.
2031     ** (VECTOR NIL) is a subtype of STRING.
2032
2033 changes in sbcl-0.8.1 relative to sbcl-0.8.0:
2034   * minor incompatible change: some nonsensical specialized lambda
2035     lists (used in DEFMETHOD) which were previously ignored now signal
2036     errors.
2037   * minor incompatible change: the system is now aware of the types of
2038     variables in the COMMON-LISP package, and will signal errors for
2039     most violations of these type constraints (where previously they
2040     were silently accepted).
2041   * minor incompatible change: COMPILE-FILE now uses the freedom
2042     afforded (ANSI 3.2.2.3) to use derived function types for
2043     functions defined in the same file. This also permits the system
2044     to warn on static type mismatches and function
2045     redefinition.  (Currently it does not work with high DEBUG level.)
2046   * minor incompatible change: VALUES declaration is disabled.
2047   * When issuing notes, the compiler now signals a condition of type
2048     SB-EXT:COMPILER-NOTE, and provides an associated MUFFLE-WARNING
2049     restart for use in user handlers.  It is expected that the
2050     COMPILER-NOTE condition will eventually become a condition
2051     supertype to a hierarchy of note types, which will then be
2052     handleable in a similar fashion. However, at the moment, no such
2053     note subtypes yet exist. (SB-INT:SIMPLE-COMPILER-NOTE exists,
2054     but it's an implementation detail, not a classification for the
2055     purpose above.)
2056   * Changes in type checking closed the following bugs:
2057     ** type checking of unused values (192b, 194d, 203);
2058     ** template selection based on unsafe type assertions (192c, 236);
2059     ** type checking in branches (194bc).
2060   * A short form of VALUES type specifier has ANSI meaning (it has
2061     increased the number of situations when SBCL cannot perform type
2062     checking).
2063   * fixed bug in DEFSTRUCT: once again, naming structure slots with
2064     keywords or constants is permissible.
2065   * STREAM-READ-SEQUENCE and STREAM-WRITE-SEQUENCE now have methods
2066     defined on the relevant FUNDAMENTAL-BINARY-{INPUT,OUTPUT}-STREAM
2067     classes.  (thanks to Antonio Martinez)
2068   * improved ANSIness in DESCRIBE: The DESCRIBE function no longer
2069     outputs FRESH-LINE or TERPRI, and no longer converts its stream
2070     argument to a pretty-print stream. Instead, it leaves any such 
2071     operations to DESCRIBE-OBJECT methods.
2072   * bug fix: APROPOS now respects the EXTERNAL-ONLY flag. (reported
2073     by Teemu Kalvas)
2074   * bug fix: NIL is now a valid destructuring argument in DEFMACRO
2075     lambda lists. (thanks to David Lichteblau)
2076   * bug fix: Defining a generic function with a :METHOD-CLASS being a
2077     subclass of STANDARD-METHOD no longer causes stack exhaustion.
2078     (thanks to Gerd Moellmann)
2079   * fixed bug 246: increased compilation speed of long
2080     MULTIPLE-VALUE-BIND (and likewise of NTH-VALUE with a constant
2081     integer argument)
2082   * a contributed module implementing COMPILER-LET and MACROEXPAND-ALL
2083     has been included.
2084   * DEFCONSTANT now throws a condition of type
2085     SB-EXT:DEFCONSTANT-UNEQL if it is being asked to redefine a
2086     constant to a non-EQL value; CONTINUE and ABORT restarts
2087     respectively change and preserve the value. 
2088   * fixed bug 63: The code walker, part of the implementation of CLOS,
2089     is now better at handling symbol macros.
2090   * bug fix: There is no longer an internal implementation type named
2091     CL:LENGTH. (reported by Raymond Toy)
2092   * bug fix: In macro-like defining macros/special operators the
2093     implicit block does not enclose the lambda list.
2094   * fixed bugs 10 and 43: Bare VALUES, AND, OR and MEMBER symbols (not
2095     enclosed in parentheses) are not suitable as type specifiers, and
2096     their use properly signals an error now.
2097   * bug fix: An argument count mismatch for a type specifier in code
2098     being compiled no longer causes an unhandled error at compile
2099     time, but signals a compile-time warning.
2100   * fixed simple vector readable printing
2101   * bug fix: DESCRIBE takes more care over whether the class
2102     precedence list slot of a class is bound before accessing it.
2103     (reported by Markus Krummenacker)
2104   * bug fix: FORMATTER can successfully compile pretty-printer format
2105     strings which use variants of the ~* directive inside.
2106   * bug fix: SEARCH now applies its TEST predicate to the elements of
2107     the arguments in the correct order. (thanks to Wolfhard Buss)
2108   * fixed bug 235b: The compiler uses return types of MAPCAR and friends
2109     in type inference. (thanks to Robert E. Brown)
2110   * bug fix: Reading in symbols with an explicit package name of ""
2111     (e.g. '||::FOO) now works correctly.  (reported by Henrik Motakef)
2112   * fixed some bugs revealed by Paul Dietz' test suite:
2113     ** NIL is now allowed as a structure slot name.
2114     ** Arbitrary numbers, not just REALs, are allowed in certain
2115        circumstances in LOOP for-as-arithmetic clauses.
2116     ** Multiple class redefinitions before slot access no longer
2117        causes a type error.
2118     ** (SETF FIND-CLASS) now accepts NIL as an argument to remove the
2119        association between the name and a class.
2120     ** Generic functions with non-standard method-combination and over
2121        five methods all of which return constants no longer return NIL
2122        after the first few invocations. (thanks to Gerd Moellmann)
2123     ** CALL-NEXT-METHOD with no arguments now passes the original
2124        values of the arguments, even in the presence of assignment.
2125     ** Functions [N]SUBST*, LAST, NRECONC, [N]SUBLIS may return any
2126        object.
2127     ** DISASSEMBLE works with closures and funcallable instances.
2128     ** ADD-METHOD now returns the generic function, not the new method.
2129     ** FIND-METHOD signals an error if the lengths of the specializers
2130        is incompatible with the generic function, even if the ERRORP
2131        argument is true.
2132     ** TYPE-OF returns recognizeable subtypes of all built-in-types of
2133        which its argument is a member.
2134     ** DEFCLASS only redefines the class named by its class-name
2135        argument if that name is the proper name of the class;
2136        otherwise, it creates a new class.
2137     ** SLOT-UNBOUND now correctly initalizes the CELL-ERROR-NAME slot
2138        of the UNBOUND-SLOT condition to the name of the slot.
2139     ** (SETF (AREF bv 0) ...) did not work for bit vectors.
2140     ** SLOT-UNBOUND and SLOT-MISSING now have their return values
2141        treated by SLOT-BOUNDP, SLOT-VALUE, (SETF SLOT-VALUE) and
2142        SLOT-MAKUNBOUND in the specified fashion.
2143
2144 changes in sbcl-0.8.0 relative to sbcl-0.8alpha.0
2145   * SBCL now builds using CLISP (version of late April 2003 from CVS) as
2146     cross-compilation host. As a consequence, we can now bootstrap our
2147     way up to SBCL starting with a bare gcc toolchain and human-readable
2148     source code (first the source to CLISP, then the source to SBCL).
2149   * A contributed module containing a partial implementation of the
2150     simple-streams interface has been included.  (thanks to Rudi
2151     Schlatte)
2152   * A contributed module implementing the RFC1321 Message Digest
2153     Algorithm, known as MD5, has been included.
2154   * minor incompatible change: The :NEGATIVE-ZERO-IS-NOT-ZERO feature
2155     no longer has any effect, as the code controlled by this feature
2156     has been deleted.  (As far as we know, no-one has ever built using
2157     this feature, and its semantics were confused in any case).
2158   * minor incompatible change: As a consequence of making SLOT-EXISTS-P
2159     work on conditions (as required by the ANSI specification),
2160     SLOT-VALUE, (SETF SLOT-VALUE) and SLOT-BOUNDP likewise have the
2161     expected behaviour on conditions.  Users should note, however,
2162     that such behaviour is not required by the ANSI specification,
2163     and so use of this behaviour may render their code unportable.
2164   * fixed some bugs revealed by Paul Dietz' test suite:
2165     ** the GENERIC-FUNCTION type is no longer disjoint from FUNCTION
2166        types.
2167     ** &ENVIRONMENT parameter in macro lambda list is bound first.
2168     ** SXHASH on condition objects no longer returns NIL.
2169     ** :ALLOCATION :CLASS slots are better treated; their values are
2170        updated on class redefinition, and initforms inherited from
2171        superclasses are applied.
2172     ** REMOVE-METHOD returns its generic function argument even when
2173        no method was removed.
2174     ** SHARED-INITIALIZE now initializes the values of the requested
2175        slots, including those with :ALLOCATION :CLASS.
2176     ** ALLOCATE-INSTANCE now works on structure classes defined via
2177        DEFSTRUCT (and not just by those from DEFCLASS :METACLASS
2178        STRUCTURE-CLASS).
2179     ** SLOT-EXISTS-P now works on conditions, as well as structures
2180        and CLOS instances.
2181     ** MAKE-LOAD-FORM now has the required methods on
2182        STRUCTURE-OBJECT, CONDITION and STANDARD-OBJECT.
2183     ** MAKE-LOAD-FORM-SAVING-SLOTS no longer returns a special
2184        keyword, and now implements the SLOT-NAMES argument.
2185     ** methods with &OPTIONAL arguments no longer allow too many
2186        arguments to be passed in the call without error.
2187     ** DEFGENERIC now checks that the :ARGUMENT-PRECEDENCE-ORDER
2188        option is consistent with the required arguments of the generic
2189        function lambda list.
2190   * bug fix: REQUIRE accepts a string designator. (Thanks to 
2191     Antonio Martinez.)
2192   * bug fix: SB-MOP:DIRECT-SLOT-DEFINITION-CLASS and
2193     SB-MOP:EFFECTIVE-SLOT-DEFINITION-CLASS now have the
2194     specified-by-AMOP lambda list of (CLASS &REST INITARGS).
2195   * bug fix: The compiler now checks for duplicated variables in macro
2196     lambda lists.
2197   * bug fix: SETQ on globals returns the correct value.
2198   * fixed bug 47.d: (DEFGENERIC IF (X)) now signals a PROGRAM-ERROR,
2199     not a COMPILER-ERROR (followed by some other strange error on
2200     choosing the CONTINUE restart).
2201   * bug fix: make.sh and friends are now more consistent in the way that
2202     they look for GNU "make".
2203
2204 changes in sbcl-0.8alpha.0 relative to sbcl-0.7.14
2205   * experimental native threads support (on x86 Linux >=2.4 only).
2206     This is not compiled in by default: you need to add :SB-THREAD to
2207     the target features.  See the "Beyond ANSI" chapter of the manual
2208     for details.
2209   * fix for longstanding nonANSIism: The old distinction between
2210     CL:CLASS objects and SB-PCL:CLASS objects has been eliminated.
2211     The return value from CL:FIND-CLASS is now a CLOS class, and
2212     likewise that of CL:CLASS-OF; CL:BUILT-IN-CLASS,
2213     CL:STRUCTURE-CLASS and CL:STANDARD-CLASS name CLOS classes.
2214   * An interface to the MetaObject Protocol, as described in Kiczales,
2215     des Rivieres and Bobrow's "The Art of the Metaobject Protocol",
2216     MIT Press, 1991, is available from the SB-MOP package.
2217   * incompatible change: the SB-PCL package should now be considered
2218     a private implementation detail, and no longer a semi-private MOP
2219     interface.
2220   * minor incompatible change: due to rearrangement for threads, the
2221     control stack and binding stack are now allocated at arbitrary
2222     addresses instead of being hardcoded per-port.  Users affected by
2223     this probably have to be doing advanced things with shared
2224     libraries, and will know who they are.
2225   * minor incompatible change: Previously, all --eval forms used were
2226     processed with READ before any of them were processed with EVAL.
2227     Now each --eval form is processed with both READ and EVAL before
2228     the next --eval form is processed. (Thus package operations like
2229     sbcl --eval "(defpackage :foo)" --eval "(print 'foo::bar)" now
2230     work as the user might reasonably expect.)
2231   * minor incompatible change: *STANDARD-INPUT* is now only an
2232     INPUT-STREAM, not a BIDIRECTIONAL-STREAM.  (thanks to Antonio
2233     Martinez)
2234   * minor incompatible change: Y-OR-N-P is now character-oriented,
2235     not line oriented.  Also, YES-OR-NO-P now works without errors.
2236     (thanks to Antonio Martinez)
2237   * sb-aclrepl module improvements: an integrated inspector, added
2238     repl features, and a bug fix to :trace command.
2239   * Known functions, which cannot be open coded by the backend, are
2240     considered to be able to check types of their arguments. (fixing
2241     a bug report by Nathan J. Froyd)
2242   * fixed a bug in computing method discriminating functions: It is
2243     now possible to define methods specialized on classes which have
2244     forward-referenced superclasses. (thanks to Gerd Moellmann)
2245   * fixed evaluation order in optional entries (reported by Gilbert
2246     Baumann)
2247   * SB-MOP:ENSURE-CLASS-USING-CLASS now takes its arguments in the
2248     specified-by-AMOP order of (CLASS NAME &REST ARGS &KEY).
2249   * SB-MOP:COMPUTE-EFFECTIVE-SLOT-DEFINITION now takes the
2250     required-by-AMOP NAME argument, as well as CLASS and
2251     DIRECT-SLOT-DEFINITIONS.  (thanks to Kevin Rosenberg)
2252   * fixed bug 20: DEFMETHOD can define methods using names that are
2253     not the proper names of classes to designate class specializers.
2254   * bug fix: INTERACTIVE-STREAM-P now works on streams associated with
2255     Unix file descriptors, instead of blowing up. (thanks to Antonio
2256     Martinez)
2257   * Garbage collection refactoring: user-visible change is that a
2258     call to the GC function during WITHOUT-GCING will not do garbage
2259     collection until the end of the WITHOUT-GCING.  If you were doing
2260     this you were probably losing anyway.
2261   * fixed bug in MEMBER type: (MEMBER 0.0) is not the same as
2262     (SINGLE-FLOAT 0.0 0.0), because of the existence of -0.0 which is
2263     TYPEP the latter but not the former.
2264   * The compiler issues a full WARNING for calls to undefined functions
2265     with names from the CL package.
2266   * MAP-INTO for a vector destination is open coded.  (reported by
2267     Brian Downing on c.l.l)
2268   * bug fix: the long form of DEFINE-METHOD-COMBINATION now accepts a
2269     documentation string.
2270   * fixed some bugs revealed by Paul Dietz' test suite:
2271     ** COPY-ALIST now signals an error if its argument is a dotted
2272        list.
2273     ** Condition slots are now accessed more correctly in the presence
2274        of multiple initargs for a given slot.
2275     ** The USE-VALUE, CONTINUE and STORE-VALUE functions now correctly
2276        exclude restarts of the same name associated with a different
2277        condition.
2278     ** DEFCLASS of forward-referenced classes with another
2279        forward-referenced class in the superclasses list no longer
2280        causes an error.
2281     ** Condition slots are now initialized once each, not multiple
2282        times. (thanks to Gerd Moellmann)
2283     ** CONVERT-MORE-CALL failed on a lambda list (&KEY). (thanks to
2284        Gerd Moellmann)
2285     ** &WHOLE and &REST arguments in macro lambda lists are patterns.
2286     ** NSET-EXCLUSIVE-OR does not return extra elements when its
2287        arguments contain duplicated elements.
2288     ** RESTART-CASE understands local macros.
2289     ** RESTART-CASE associates exactly its own restarts with a condition.
2290     ** ENDP in safe mode checks its argument to be of type LIST.
2291     ** COPY-SYMBOL in a threaded build no longer fails when the symbol
2292        in question is unbound.
2293     ** Optimized MAKE-INSTANCE functions no longer cause internal
2294        assertion failures in the presence of duplicate initargs.
2295     ** SLOT-MAKUNBOUND returns the instance acted upon, not NIL.
2296     ** Side-effectful :DEFAULT-INITARGS have their side-effects
2297        propagated even in the ctor optimized implementation of
2298        MAKE-INSTANCE.
2299     ** :ALLOW-OTHER-KEYS NIL is now accepted in an initarg list.
2300
2301 changes in sbcl-0.7.14 relative to sbcl-0.7.13:
2302   * a better implementation of SXHASH on (simple) bit vectors,
2303     measured both in execution speed and in distribution of results
2304     over the positive fixnums, has been installed.  Likewise, a better
2305     implementation of EQUAL for simple bit vectors is now available.
2306   * fixed CEILING optimization for a divisor of form 2^k.
2307   * fixed bug 240 (emitting extra style warnings "using the lexical
2308     binding of the symbol *XXX*" for &OPTIONAL arguments).  (reported
2309     by Antonio Martinez)
2310   * fixed SXHASH, giving different results for NIL depending on type
2311     declarations (SYMBOL or LIST).  (thanks to Gerd Moellmann)
2312   * fixed bug in DEFPARAMETER and DEFVAR: they could assign a lexical
2313     variable.  (found by Rolf Wester)
2314   * SBCL does not ignore type declarations for special
2315     variables.  (reported by rif on c.l.l 2003-03-05)
2316   * some bug fixes in contrib/sb-aclrepl/
2317   * fixed some bugs revealed by Paul Dietz' test suite:
2318     ** a bug in the CONS type specifier, whereby the CAR and CDR
2319        types got intertwined, has been fixed;
2320     ** the type system is now able to reason about the interaction
2321        between INTEGER and RATIO types more completely;
2322     ** APPEND, [N]REVERSE and NRECONC check that those their
2323        arguments, which must be proper lists, are really so;
2324     ** An array specialized to be unable to hold elements has been
2325        implemented, as required -- yes, really -- by ANSI;
2326     ** GETF and GET-PROPERTIES throw a TYPE-ERROR, not a SIMPLE-ERROR,
2327        on malformed property lists;
2328
2329 changes in sbcl-0.7.13 relative to sbcl-0.7.12:
2330   * incompatible packaging change: in line with Unix convention, 
2331     SBCL now looks for its core file in /usr/{local/,}lib/sbcl/sbcl.core 
2332     if it's not in $SBCL_HOME.  It also sets SBCL_HOME to match.
2333   * REQUIRE and PROVIDE are now optionally capable of doing something
2334     useful. See the documentation string for REQUIRE.
2335   * infrastructure for a managed SBCL contrib system: contributed 
2336     modules in this release include:
2337     ** the ASDF system definition facility;
2338     ** an interface to the BSD Sockets API;
2339     ** an ACL-like convenience interface to the repl; 
2340        (thanks to Kevin Rosenberg)
2341     ** an implementation of ROTATE-BYTE, with efficient implementation
2342        on x86 hardware;
2343   * fixed a bug in LOG, so that LOG of a rational argument near 1 now
2344     gives a closer approximation to the right answer than previously.
2345     (thanks to Raymond Toy)
2346   * fixed bug 157: TYPEP, SUBTYPEP, UPGRADED-ARRAY-ELEMENT-TYPE and
2347     UPGRADED-COMPLEX-PART-TYPE now take (ignored, in all situations)
2348     optional environment arguments, as required by ANSI.
2349   * fixed bugs in other functions taking environment objects, allowing
2350     calls with an explicit NIL environment argument to be compiled
2351     without error.
2352   * fixed bug 228: primary return values from
2353     FUNCTION-LAMBDA-EXPRESSION are either NIL or suitable for input to
2354     COMPILE or FUNCTION.
2355   * fixed a bug in DEFSTRUCT: predicates for :NAMED structures with
2356     :TYPE will no longer signal errors on innocuous objects.
2357   * fixed bug 231b: SETQ is better at respecting type declarations in
2358     the lexical environment.
2359   * fixed a bug in DEFCLASS: classes named by symbols with no or
2360     unprintable packages can now be defined.
2361   * fixed a bug in RESTART-BIND: The :TEST-FUNCTION option had been
2362     carelessly renamed to :TEST-FUN.  (thanks to Robert E. Brown)
2363   * fixed compiler failure related to checking types of functions.
2364     (reported by Robert E. Brown)
2365   * the compiler is now much more consistent in its error-checking
2366     treatment of bounding index arguments to sequence functions: in
2367     (SAFETY 3) code, errors will be signalled in almost all cases if
2368     invalid sequence bounding indices are passed to functions defined
2369     by ANSI to operate on sequences.
2370   * fixed a bug in the build procedure: documentation of SBCL-specific
2371     packages is now preserved and available in the final Lisp image.
2372   * lifted FDEFINITION lookup out of loops in the implementation of
2373     many list operations.  (thanks to Robert E. Brown)
2374   * fixed a bug in the reader: the #n# reader macro now works for
2375     objects of type STANDARD-OBJECT.  (reported by Tony Martinez)
2376   * the compiler is now aware that SYMBOL-FUNCTION returns a FUNCTION
2377     and that READ-DELIMITED-LIST returns a LIST.  (thanks to Robert
2378     E. Brown and Tony Martinez respectively)
2379   * PCL is now smarter about SLOT-VALUE, (SETF SLOT-VALUE) and
2380     SLOT-BOUNDP: in particular, it is now able to optimize them much
2381     better, and is now not vulnerable to having packages renamed.
2382     Furthermore, a compliance bug has been fixed: SLOT-MISSING is now
2383     always called when a slot is not present in an instance.  (thanks
2384     to Gerd Moellmann)
2385   * fixed a bug related to CONCATENATED-STREAMs: PEEK-CHAR will no
2386     longer signal an error on unreading a character following EOF on
2387     the previous constituent stream.  (thanks to Tony Martinez)
2388   * fixed some bugs revealed by Paul Dietz' test suite:
2389     ** ARRAY-IN-BOUNDS-P now allows arbitrary integers as arguments,
2390        not just nonnegative fixnums;
2391     ** the logical bit-array operators such as BIT-AND now accept an
2392        explicit NIL for their "opt-arg" argument (to indicate a
2393        freshly-consed result bit-array);
2394     ** ELT now signals an error on an invalid sequence index in safe
2395        code;
2396     ** the type system is now cleverer about negations of numeric
2397        types, and consequently understands the BIGNUM and RATIO types
2398        better;
2399     ** the type system is now cleverer about the interaction between
2400        INTEGER and RATIO types: while bugs still remain, many more
2401        cases are accurately computed;
2402     ** in TYPECASE, OTHERWISE now only introduces an otherwise-clause
2403        if it is in the last clause;
2404     ** CONSTANTLY now correctly returns a side-effect-free function in
2405        all cases;
2406     ** DECLARE is no longer treated as a special-operator; in
2407        particular, SPECIAL-OPERATOR-P no longer returns T for DECLARE;
2408   * incremented fasl file version number due to the change in the
2409     DEFSTRUCT-SLOT-DESCRIPTION structure.
2410
2411 changes in sbcl-0.7.12 relative to sbcl-0.7.11:
2412   * minor incompatible change: code processed by the "interpreter" or
2413     EVAL now has a compilation optimization policy of (DEBUG 2)
2414     (changed from (DEBUG 1)) to improve debuggability of interactive
2415     development, and to allow the use of the debug RETURN command in
2416     such code.
2417   * an experimental implementation of the RETURN command for the
2418     debugger has been included.  (thanks to Frederik Kuivinen)
2419   * fixed bug 62: constraints were not propagated into a loop.
2420   * fixed bug in embedded calls of SORT (reported and investigated by
2421     Wolfgang Jenkner).
2422   * fixed some bugs revealed by Paul Dietz' test suite:
2423     ** printing and reading of arrays with some dimensions having
2424        length 0 (thanks to Gerd Moellmann);
2425     ** BOA constructor with &AUX argument without a default value does
2426        not cause a type error;
2427     ** CONSTANTP now returns true for all self-evaluating objects.
2428
2429 changes in sbcl-0.7.11 relative to sbcl-0.7.10:
2430   * fixed bug 127: DEFSTRUCT now does not clobber old structure
2431     accessors that are related by inheritance, as specified in the
2432     :CONC-NAME section of the specification of DEFSTRUCT.  (thanks to
2433     Valtteri Vuorikoski)
2434   * The compiler is now able to inline functions that were defined in
2435     a complex lexical environment (e.g. inside a MACROLET).
2436   * fixed bug in DESCRIBE, which now works on rank-0 arrays.  (thanks
2437     to Lutz Euler)
2438   * Support for the upcoming FreeBSD-5.0 release has been included.
2439     (thanks to Dag-Erling Smorgrav)
2440   * fixed bug 219: DEFINE-COMPILER-MACRO no longer has compile-time
2441     effect when it is not in a toplevel context.
2442   * fixed bug 222: DEFMETHOD and SYMBOL-MACROLET interactions now
2443     stand a better chance of being correct.  (thanks to Gerd
2444     Moellmann)
2445   * fixed bug in COERCE, which now signals an error on coercing a
2446     rational to a bounded real type which excludes the expected
2447     answer.
2448   * The compiler is now able to derive types more accurately from the
2449     COERCE and COMPILE functions.
2450   * fixed bug 223: functional binding is considered to be constant
2451     only for symbols in the CL package.
2452   * fixed bug 231: SETQ did not check the type of a variable being set
2453     (reported by Robert E. Brown)
2454   * A new optimization for MAKE-INSTANCE has been included, fixing
2455     various bugs (including relating to :ALLOCATION :CLASS slots and
2456     :DEFAULT-INITARGS over-eager evalueation).  (thanks to Gerd
2457     Moellmann)
2458   * fixed some LOOP bugs revealed by Paul Dietz' test suite:
2459     ** As required by ANSI, LOOP now disallows anonymous collection
2460        clauses such as COLLECT I in conjunction with aggregate boolean
2461        clauses such as THEREIS (= I 1);
2462     ** LOOP now signals an error when any variable is reused in the
2463        same loop (including the potentially useful construct analogous
2464        to WITH A = 1 WITH A = (1+ A);
2465     ** IT is only a special loop symbol within the first clause of a
2466        conditional loop clause;
2467     ** LOOP with a typed iteration variable over a hashtable now
2468        signals a type error iff it should.
2469   * fixed some other bugs revealed by Paul Dietz' test suite:
2470     ** FILE-STREAM now names the class previously known as FD-STREAM;
2471     ** in DEFSTRUCT, a bare :CONC-NAME (or a :CONC-NAME with no
2472        argument) no longer signals an error;
2473     ** likewise in DEFSTRUCT, :CONC-NAME NIL now respects the package
2474        of the slot symbol, rather than using the current package
2475        ((:CONC-NAME "") continues to intern the slot's name in the
2476        current package);
2477   * incremented fasl file version number, because of the incompatible
2478     change to the DEFSTRUCT-DESCRIPTION structure, and again because
2479     of the new implementation of DEFINE-COMPILER-MACRO.
2480
2481 changes in sbcl-0.7.10 relative to sbcl-0.7.9:
2482   * Support for building SBCL for MIPS platforms running in
2483     little-endian mode has now been checked in, and basic
2484     functionality on said platforms verified.
2485   * minor incompatible change: PCL now records the pathname of a file
2486     in which methods and the like are defined, rather than its
2487     truename.
2488   * minor incompatible change: TRUENAME now considers the truename of
2489     a file naming a directory to be the pathname with :DIRECTORY
2490     component indicating that directory.
2491   * minor incompatible change: a NAMED clause in the extended form of
2492     LOOP no longer causes a BLOCK named NIL to surround the LOOP.  The
2493     reason for the previous behaviour is unclear.
2494   * more systematization and improvement of CLOS and MOP conformance
2495     in PCL (thanks to Gerd Moellman and Pierre Mai):
2496     ** the standard ANSI CL generic function NO-NEXT-METHOD is now
2497        implemented;
2498     ** DEFINE-METHOD-COMBINATION no longer signals an error for
2499        primary methods with no specializers;
2500     ** the MOP generic function GENERIC-FUNCTION-DECLARATIONS is now
2501        implemented;
2502     ** the Readers for Class Metaobjects methods CLASS-DIRECT-SLOTS
2503        and CLASS-DIRECT-DEFAULT-INITARGS have been implemented for
2504        FORWARD-REFERENCED-CLASSes; error reporting on
2505        CLASS-DEFAULT-INITARGS, CLASS-PRECEDENCE-LIST and CLASS-SLOTS
2506        has been improved;
2507     ** SXHASH on CLOS instances now uses a slot internal to the
2508        instance to return different numbers on distinct instances,
2509        while preserving the same return value through invocations of
2510        CHANGE-CLASS;
2511     ** DEFMETHOD signals errors when methods with longer incongruent
2512        lambda lists are added to generic functions;
2513     ** COMPUTE-CLASS-PRECEDENCE-LIST now has a method specialized on
2514        CLASS, as specified in AMOP;
2515     ** COMPUTE-SLOTS :AROUND now assigns locations sequentially based
2516        on the order returned by the primary method for classes of
2517        class STANDARD-CLASS;
2518     ** DEFINE-METHOD-COMBINATION now works with the :ARGUMENTS option.
2519   * fixed some bugs shown by Paul Dietz' test suite:
2520     ** DOLIST puts its body in TAGBODY;
2521     ** SET-EXCLUSIVE-OR sends arguments to :TEST function in the
2522        correct order;
2523     ** MULTIPLE-VALUE-SETQ evaluates side-effectful places before
2524        value producing form;
2525     ** if more variables are given to PROGV than values, extra
2526        variables are bound and made to have no value;
2527     ** NSUBSTITUTE on list arguments gets the right answer with
2528        :FROM-END;
2529     ** ELT signals an error of type TYPE-ERROR when the index argument
2530        is not a valid sequence index;
2531     ** LOOP signals (at macroexpansion time) an error of type
2532        PROGRAM-ERROR when duplicate variable names are found;
2533     ** LOOP supports DOWNTO and ABOVE properly; (thanks to Matthew Danish)
2534     ** FUNCALL of special-operators now cause an error of type
2535        UNDEFINED-FUNCTION;
2536     ** PSETQ now works as required in the presence of side-effecting
2537        symbol-macro places;
2538     ** NCONC accepts any object as its last argument;
2539     ** :COUNT argument to sequence functions may be BIGNUM; (thanks to
2540        Gerd Moellman)
2541     ** loop-for-as-package does not require a package to be explicitely
2542        specified;
2543     ** LOOP WITH now treats NIL in the d-var-spec correctly as an
2544        ignored binding.
2545   * fixed bug 166: compiler preserves "there is a way to go"
2546     invariant when deleting code.
2547   * fixed bug 172: macro lambda lists with required arguments after
2548     &REST arguments now cause an error to be signalled.  (thanks to
2549     Matthew Danish)
2550   * fixed Entomotomy PEEK-CHAR-WRONGLY-ECHOS-TO-ECHO-STREAM
2551     bug. (thanks to Matthew Danish)
2552   * fixed bug 225: STRING-STREAM is now a class. (reported by Gilbert
2553     Baumann)
2554   * fixed bug 136: CALL-NEXT-METHOD no longer gets confused when
2555     arguments are lexically rebound. (thanks to Gerd Moellmann and
2556     Pierre Mai)
2557   * fixed bug 194: error messages are now more informative when there
2558     is no primary method applicable in a call to a generic
2559     function. (thanks to Gerd Moellmann)
2560   * fixed bug in command line argument checking (thanks to Julian
2561     Fondren)
2562   * fixed bug in COUNT-IF, making it handle :FROM-END correctly
2563     (thanks to Matthew Danish)
2564   * incremented fasl file version number, because of the
2565     SXHASH-related changes in the layout of CLOS data structures
2566
2567 changes in sbcl-0.7.9 relative to sbcl-0.7.8:
2568   * minor incompatible change: The runtime (the Unix executable named
2569     "sbcl") is now much pickier about the .core files it will load.
2570     Essentially it now requires .core files to descend from the same
2571     build (not just the same sources or LISP-IMPLEMENTATION-VERSION)
2572     as the runtime does. (The intent is to prevent the crashes which
2573     can occur, and which can even be reported as mysterious failures,
2574     when people patch the sources or change the build parameters
2575     without changing LISP-IMPLEMENTATION-VERSION, then mix and match
2576     sbcl and .core files.)
2577   * fixed bug: VALUES-LIST is no longer optimized away.
2578   * fixed bug 142: The FFI conversion of C string values to Lisp
2579     string values no longer conses excessively. (thanks to Nathan
2580     Froyd porting Raymond Toy's fix to CMU CL)
2581   * began to systematize and improve MOP conformance in PCL (thanks to
2582     Nathan Froyd, Gerd Moellman and Pierre Mai):
2583     ** SLOT-DEFINITION-ALLOCATION now returns :CLASS, not the class
2584        itself;
2585     ** GENERIC-FUNCTION-ARGUMENT-PRECEDENCE-ORDER is now implemented;
2586     ** FINALIZE-INHERITANCE is now called on class finalization;
2587     ** DOCUMENTATION and (SETF DOCUMENTATION) now have the correct
2588        argument precedence order.
2589   * fixed bug 202: The compiler no longer fails on functions whose
2590     derived types contradict their declared type.
2591   * DEFMACRO is implemented via EVAL-WHEN instead of IR1 translation,
2592     so it can be non-toplevel.
2593   * The fasl file version number has changed (because of the new
2594     implementation of DEFMACRO).
2595   * (mostly) fixed bugs 46b and 46c: sequence functions now check, in
2596     safe code, that any length requirement by their type-specifier
2597     argument is valid.  The exceptions to this are described in bug
2598     213.
2599   * fixed bugs 46h and 46i: TWO-WAY- and CONCATENATED-STREAM creation
2600     functions now check the types of their inputs as required by ANSI.
2601   * fixed bug 48c: SYMBOL-MACROLET signals PROGRAM-ERROR when an
2602     introduced symbol is DECLAREd to be SPECIAL.
2603   * fixed reading of (COMPLEX DOUBLE-FLOAT) literals from fasl files
2604   * fixed bug: :COUNT argument to sequence functions may be negative
2605   * fixed bug: body of DO-SYMBOLS may contain declarations
2606   * fixed bug: PUSHNEW now evaluates its arguments from left to right
2607     (reported by Paul F. Dietz, fixed by Gerd Moellman)
2608   * fixed bug: PUSH, PUSHNEW and POP now evaluate a place given by a
2609     symbol macro only once
2610   * fixed printing of call frame when argument list is unavailable
2611   * fixed bug: :ALLOW-OTHER-KEYS is an allowed keyword name
2612   * compiler no longer signals WARNING on unknown keyword
2613     :ALLOW-OTHER-KEYS
2614
2615 changes in sbcl-0.7.8 relative to sbcl-0.7.7:
2616   * A beta-quality port to the mips architecture running Linux,
2617     based on the old CMUCL backend, has been made.  It has been tested
2618     on a big-endian kernel, and works sufficiently well to be able to
2619     rebuild itself; it has not been tested in little-endian mode.
2620   * fixed an inconsistency between gencgc.c and purify.c which made
2621     dumping/loading .core files unreliable
2622   * fixed bug 120a: The compiler now deals correctly with IFs where
2623     the consequent is the same as the alternative, instead of
2624     misderiving the return type. (thanks to Alexey Dejneka)
2625   * fixed bug 113: Logical pathnames are now dumpable (the logical
2626     host is resolved at load-time, throwing an error if it is not
2627     found).
2628   * fixed bug 174: FORMAT's error message is slightly clearer when a
2629     non-printing character is used in a format directive.
2630   * fixed several bugs in compiler checking of type declarations, i.e.
2631     violations of the Python "declarations are assertions" principle
2632     (thanks to Alexey Dejneka)
2633   * fixed several bugs in PCL's error checking (thanks to Gerd
2634     Moellmann)
2635   * fixed bug: printing of FILE-ERROR (thanks to Antonio
2636     Martinez-Shotton)
2637   * fixed bug in compilation of functions as first class values
2638     (thanks to Antonio Martinez-Shotton)
2639   * The compiler's handling TYPE-ERRORs which it can prove will
2640     inevitably happen at runtime has been cleaned up and corrected
2641     in several ways. (thanks to Alexey Dejneka)
2642   * improved argument type checking for various basic arithmetic
2643     operations (MAX, +, LOGXOR, etc.) which have had so much TLC
2644     lavished on them in the past that they can be compiled in many
2645     ways in different special cases
2646   * fixed bug 181: compiler checks validity of user supplied type
2647     specifiers
2648   * cleaned up code flushing in optimization: Function calls which
2649     should signal errors for safety purposes (e.g. which ANSI says
2650     should signal errors when their arguments are of incorrect type)
2651     are no longer optimized away.
2652   * added new extension: SB-DEBUG:BACKTRACE-AS-LIST
2653   * incremented fasl file version number, because changes in the
2654     implementation of sequence functions like COERCE caused 
2655     internal utility functions like COERCE-TO-SIMPLE-VECTOR (used
2656     in old inline expansions) to become undefined. (Actually these
2657     changes were later undone, so we might very well be binary
2658     compatible with 0.7.7 after all, but leaving the version number
2659     incremented seemed like the simplest and most conservative
2660     thing to do.)
2661
2662 changes in sbcl-0.7.7 relative to sbcl-0.7.6:
2663   * An alpha-quality port to the parisc architecture running Linux,
2664     based on the old CMUCL backend, has been made.  This, even more so
2665     than the other backends, should be considered still a work in
2666     progress; known problems include that the Linux kernel in 64-bit
2667     mode does not propagate the correct sigcontext structure to
2668     userspace, and consequently SBCL on a parisc64 kernel will not
2669     work yet.
2670   * fixed bug 189: The compiler now respects NOTINLINE declarations for
2671     functions declared in FLET and LABELS. (I.e. "LET conversion" is
2672     suppressed.) Also now that the compiler is looking at declarations
2673     in the environment, it checks optimization declarations as well,
2674     and suppresses inlining when (> DEBUG SPEED).
2675   * More fixes have been made to treatment of floating point exception
2676     treatment and other Unix signals.  In particular, floating point
2677     exceptions no longer cause Bus errors on the SPARC/Linux platform.
2678   * The detection and handling of control stack exhaustion (infinite
2679     or very deeply nested recursion) has changed.  Stack exhaustion
2680     detection is now done by write-protecting pages at the OS level
2681     and applies at all optimization settings; when found, a
2682     SB-KERNEL:CONTROL-STACK-EXHAUSTED condition (subclass of
2683     STORAGE-CONDITION) is signalled, so stack exhaustion can no longer
2684     be caught using IGNORE-ERRORS.
2685   * Bugs 65, 70, and 109 fixed: The compiler now preserves invariants
2686     correctly when transforming recursive LABELS functions to LETs.
2687     (thanks to Alexey Dejneka)
2688   * Bug 48a./b. fixed: SYMBOL-MACROLET now refuses to bind symbols
2689     that are names of constants or global variables.
2690   * Bug fix: DEFINE-ALIEN-ROUTINE now declaims the correct FTYPE for
2691     alien routines with docstrings.
2692   * Bug 184 fixed: Division of ratios by the integer 0 now signals an
2693     error of type DIVISION-BY-ZERO. (thanks to Wolfhard Buss and
2694     Raymond Toy)
2695   * Bug fix: Errors in PARSE-INTEGER are now of type PARSE-ERROR.
2696     (thanks to Eric Marsden)
2697   * Bug fix: COERCE to (COMPLEX FLOAT) of rationals now returns an
2698     object of type (COMPLEX FLOAT). (thanks to Wolfhard Buss)
2699   * Bug fix: The SPARC backend can now compile functions involving
2700     LOGAND and stack-allocated arguments. (thanks to Raymond Toy)
2701   * Bug fix: We no longer segfault on passing a non-FILE-STREAM stream
2702     to a functions expecting a PATHNAME-DESIGNATOR.
2703   * Bug fix: DEFGENERIC now enforces the ANSI restrictions on its
2704     lambda lists. (thanks to Alexey Dejneka)
2705   * Bug fix: changed encoding of PCL's internal MAKE-INSTANCE
2706     functions so that EXPORTing the name of the class doesn't cause
2707     MAKE-INSTANCE functions from earlier DEFCLASSes to get lost (thanks
2708     to Antonio Martinez for reporting this)
2709   * Bug 192 fixed: The internal primitive DATA-VECTOR-REF can now be
2710     constant-folded without failing an assertion. (thanks to Einar
2711     Floystad Dorum for reporting this)
2712   * Bugs 123 and 165 fixed: array specializations on as-yet-undefined
2713     types are now dealt with more correctly by the compiler.
2714   * Minor incompatible change: COMPILE-FILE-PATHNAME now merges its
2715     OUTPUT-FILE argument with its INPUT-FILE argument, resulting in
2716     behaviour analogous to RENAME-FILE.  This puts its behaviour more
2717     in line with ANSI's wording on COMPILE-FILE-PATHNAME. (thanks to
2718     Marco Antinotti)
2719   * The fasl file version number has changed again. (because of the
2720     bug fix involving the names of PCL MAKE-INSTANCE functions)
2721
2722 changes in sbcl-0.7.6 relative to sbcl-0.7.5:
2723   * bug fix: Floating point exceptions are treated much more
2724     consistently on the x86/Linux and PPC/Linux platforms.
2725   * Array initialization with :INITIAL-ELEMENT is now much faster for
2726     cases when the compiler cannot open code the array creation, but
2727     does know what the UPGRADED-ARRAY-ELEMENT-TYPE will be. General
2728     array accesses have also seen a speed increase.
2729   * bug fix: LOAD :IF-DOES-NOT-EXIST NIL now works when file type is
2730     specified. (This was at the root of some bad interactions between
2731     SBCL and ILISP: thanks to Gregory Wright for diagnosing this and
2732     reporting the bug.)
2733   * bug fix: Internal error arguments for undefined functions are now
2734     computed correctly on the PPC/Linux platform.
2735   * bug fix: Bad &REST syntax is now checked correctly. (thanks to 
2736     Raymond Toy's patch for CMU CL)
2737   * Support for the Solaris 9 operating environment has been included
2738     (thanks to Daniel Merritt)
2739   * A very ugly but hopefully complete draft of the missing FFI chapter
2740     of the manual has been created by reformatting the corresponding
2741     CMU CL manual chapter into (currently very ugly and incoherent)
2742     DocBook and bringing it up to date for SBCL behavior. Thus, the
2743     manual is now essentially complete, at least by my extreme
2744     once-and-only-once standards, whereby it's acceptable to refer to
2745     the doc strings of SB-EXT functions as the primary documentation.
2746   * The fasl file version number has changed again, due to cleanup of
2747     (user-invisible) bitrotted stuff. (E.g. *!INITIAL-FDEFN-OBJECTS*
2748     is no longer a static symbol.)
2749
2750 changes in sbcl-0.7.5 relative to sbcl-0.7.4:
2751   * SBCL now builds with OpenMCL (version 0.12) as the
2752     cross-compilation host; also, more progress has been made toward
2753     bootstrapping under CLISP.
2754   * SBCL now runs on the Tru64 (aka OSF/1) operating system on the
2755     Alpha architecture.
2756   * bug 158 fixed: The compiler can now deal with integer loop
2757     increments different from 1; fixing this turned out also to fix
2758     bug 164.
2759   * bug 169 fixed: no more bogus warnings about using lexical bindings
2760     despite the presence of perfectly good SPECIAL declarations (thanks
2761     to David Lichteblau)
2762   * bug 175 fixed: CHANGE-CLASS is now more ANSI-conforming,
2763     accepting initargs. (thanks to Espen Johnsen and Pierre Mai)
2764   * bug 179 fixed: DIRECTORY can now deal with filenames with pattern
2765     characters in them.
2766   * bug 180 fixed: Method combination specifications no longer ignore
2767     the :MOST-SPECIFIC-LAST option. (thanks to Pierre Mai)
2768   * bug fix: Structure type predicate functions now check their argument
2769     count as they should.
2770   * bug fix: Classes with :METACLASS STRUCTURE-CLASS now print
2771     correctly. (thanks to Pierre Mai)
2772   * minor incompatible change: The --noprogrammer option is deprecated
2773     in favor of the new --disable-debugger option, which is very similar.
2774     (The major difference is that it takes effect at a slightly different
2775     time at startup, causing handling of errors in --sysinit and
2776     --userinit files will be affected differently.) The
2777     SB-EXT:DISABLE-DEBUGGER and SB-EXT:ENABLE-DEBUGGER functions have
2778     been added to allow this functionality to be controlled from ordinary
2779     Lisp code. (ENABLE-DEBUGGER should help people like the Debian
2780     maintainers, who might want to run non-interactive scripts to
2781     build SBCL cores which will later be used interactively.)
2782   * minor incompatible change: The LOAD function no longer, when given
2783     a wild pathname to load, loads all files matching that pathname.
2784     Instead, an error of type FILE-ERROR is signalled.
2785
2786 changes in sbcl-0.7.4 relative to sbcl-0.7.3:
2787   * bug 147 fixed: The compiler preserves its block link/count
2788     invariants more correctly now so that it doesn't crash. (thanks
2789     to Alexey Dejneka)
2790   * Dynamic loading of object files in OpenBSD is now supported. (thanks
2791     to Pierre Mai)
2792   * COMPILE now works correctly on macros. (thanks to Matthias Hoelzl)
2793   * GET-MACRO-CHARACTER and SET-MACRO-CHARACTER now represent
2794     no-value-for-this-character as NIL (as specified by ANSI).
2795   * HOST-NAMESTRING on physical pathnames now returns a string that is
2796     valid as a host argument to MERGE-PATHNAMES and to MAKE-PATHNAME.
2797     (thanks to Christophe Rhodes)
2798   * The Alpha port handles icache flushing more correctly. (thanks to
2799     Dan Barlow)
2800   * More progress has been made toward bootstrapping under CLISP. (thanks
2801     to Christophe Rhodes)
2802   * The fasl file format has changed again, because dynamic loading
2803     on OpenBSD (which has non-ELF object files) motivated some cleanups
2804     in the way that foreign symbols are transformed and passed around.
2805   * minor incompatible change: The ASCII RUBOUT character, (CHAR-CODE 127),
2806     is no longer treated as whitespace by the reader, but instead as
2807     an ordinary character. Thus e.g. (READ-FROM-STRING "A\7fB") returns
2808     |A\7fB|, instead of A as it used to.
2809
2810 changes in sbcl-0.7.3 relative to sbcl-0.7.2:
2811   * ANSI's DEFINE-SYMBOL-MACRO is now supported. (thanks to Nathan
2812     Froyd porting CMU CL code originally by Douglas Thomas Crosher)
2813   * SBCL now runs on the PPC archtiecture under Linux. It actually did
2814     this as of 0.7.1.45, but was left out of the previous news section
2815     (thanks to Dan Barlow)
2816   * SBCL now runs on the Solaris operating system on SPARC architectures
2817     (thanks to Christophe Rhodes's port of the CMUCL runtime)
2818   * cleanups to the runtime on SPARC, both Linux and Solaris, and for
2819     gcc>=3 (thanks to Nathan Froyd and Ingvar Mattsson)
2820   * SPARC backend cleanups, allowing builds of cores optimized for V8
2821     and V9 SPARCS, and also emission of code targeted to a particular
2822     backend chosen at runtime (thanks to Christophe Rhodes and Raymond
2823     Toy)
2824   * SBCL is closer to bootstrapping under CLISP, thanks to various
2825     fixes by Christophe Rhodes.
2826   * The fasl file format has changed again, to allow the compiler's
2827     INFO database to support symbol macros.
2828   * The user manual (in doc/) is formatted into HTML more nicely.
2829     (thanks to coreythomas)
2830   * The system is smarter about SUBTYPEP relationships, especially
2831     those involving NOT types (including types such as ATOM which are
2832     represented internally using NOT types). Thus SUBTYPEP is less
2833     likely to return (VALUES NIL NIL) in general, and in particular
2834     bugs 58 and (the remaining bits of) bug 50 are fixed. (thanks to
2835     Christophe Rhodes)
2836   * The fasl file format has changed again, because the internal
2837     representation of types now includes a new slot to support the new
2838     SUBTYPEP-of-NOT-types logic.
2839   * (not a change in the main branch of SBCL, but a related prototype
2840     which can hopefully be merged into the main branch of SBCL in the
2841     future:) Brian Spilsbury has produced a Unicode-enabled variant of
2842     sbcl-0.7.0, available as a patch against sbcl-0.7.0 at
2843       <http://designix.com.au/brian/SBCL/sbcl-0.7.0-unicode.p0.gz>.
2844   * Bug 151 fixed: GET-DISPATCH-MACRO-CHAR now returns NIL for undefined
2845     dispatch macro character combinations. (thanks to Alexey Dejneka)
2846   * Bugfix in PARSE-NAMESTRING: we now correctly parse unix namestrings 
2847     that superficially look like logical namestrings correctly.
2848   * USER-HOMEDIR-PATHNAME now returns a (physical) pathname that SBCL
2849     can deal with.
2850   * Bugfix in DEFSTRUCT: BOA constructor lambda lists now accept (name
2851     default supplied-p) for &optional and &key arguments. (thanks to
2852     Martin Atzmueller)
2853
2854 changes in sbcl-0.7.2 relative to sbcl-0.7.1:
2855   * incompatible change: The compiler is now less aggressive about
2856     tail call optimization, doing it only when (> SPACE DEBUG) or
2857     (> SPEED DEBUG). (This is an incompatible change because there are
2858     programs which relied on the old CMU-CL-style behavior to optimize
2859     away their unbounded recursion which will now die of stack overflow.)
2860   * minor incompatible change: The default BYTES-CONSED-BETWEEN-GCS
2861     for non-GENCGC systems has been increased to 20M (since that
2862     seems much closer to the likely performance optimum for modern
2863     systems than the old 4M value was)
2864   * minor incompatible change: new larger values for *DEBUG-PRINT-LENGTH*
2865     and *DEBUG-PRINT-LEVEL*
2866   * SBCL runs on SPARC systems now. (thanks to Christophe Rhodes' port
2867     of CMU CL's support for SPARC, and various endianness and other 
2868     SBCL portability fixes due to Christophe Rhodes and Dan Barlow)
2869   * new syntactic sugar for the Unix command line: --load foo.bar is now
2870     an alternate notation for --eval '(load "foo.bar")'.
2871   * bug fixes:
2872     ** The system now detects stack overflow and handles it gracefully,
2873        at least for (OR (> SAFETY (MAX SPEED SPACE)) (= SAFETY 3))
2874        optimization settings. (This is a good thing in general, and
2875        its introduction in this version should be particularly timely
2876        for anyone whose code fails because of suppression of tail
2877        recursion!)
2878     ** The system now hunts for the C variable "environ" in a more
2879        devious way, to avoid segfaults when the C library version differs
2880        between compile time and run time. (thanks to Christophe Rhodes)
2881     ** INTEGER-valued CATCH tags now work. (thanks to Alexey Dejneka,
2882        and also to Christophe Rhodes for porting the fix to non-X86 CPUs)
2883     ** The compiler no longer issues bogus style warnings for undefined
2884        classes in the same source file as the DEFCLASSes which defined
2885        them. (thanks to Stig E Sandoe for reporting and Martin Atzmueller
2886        for fixing this)
2887     ** fixes in CONDITION class precedence list for undefined function
2888        errors (thanks to Alexei Dejneka)
2889     ** *DEFAULT-PATHNAME-DEFAULTS* is used more consistently and 
2890        correctly. (thanks to Dan Barlow)
2891     ** portability fixes aiming at bootstrapping under CLISP (thanks
2892        to Dave McDonald and Christophe Rhodes)
2893     ** FORMAT fixes (thanks to Robert Strandh and Dan Barlow)
2894     ** fixes in type translation and and type inference (thanks to
2895        Christophe Rhodes)
2896     ** fixes to optimizer internal errors (thanks to Alexei Dejneka)
2897     ** various fixes in the new ports (thanks to Dan Barlow)
2898   * several changes related to debugging:
2899     ** suppression of tail recursion, as noted above
2900     ** stack overflow detection, as noted above
2901     ** The default implementation of TRACE has changed. :ENCAPSULATE T
2902        is now the default. (For some time encapsulation has been more
2903        reliable than the breakpoint-based :ENCAPSULATE NIL
2904        implementation, at least on X86 systems; and I just noticed that
2905        encapsulation also seems closer to the spirit of the ANSI
2906        specification.)
2907
2908 changes in sbcl-0.7.1 relative to sbcl-0.7.0:
2909 * mostly bug fixes:
2910   ** SB-ALIEN:LOAD-FOREIGN and SB-ALIEN:LOAD-1-FOREIGN are set
2911      up properly again. (There was a packaging bug in 0.7.0 which
2912      left their definitions in SB-SYS::LOAD-FOREIGN and 
2913      SB-SYS::LOAD-1-FOREIGN. LOAD-FOREIGN and LOAD-1-FOREIGN are
2914      vital for most things which interface to C-level interfaces,
2915      like extensions working with sockets or databases or
2916      Perl-compatible regexes or whatever, and the need to fix
2917      this bug is the main reason that 0.7.1 was released so
2918      soon after 0.7.0.)
2919   ** DEFGENERIC is now choosier about the methods it redefines, so that
2920      reLOADing a previously-LOADed file containing DEFGENERICs does
2921      the right thing now. Thus, the Lispy edit/reLOAD-a-little/test
2922      cycle now works as it should. (thanks to Alexey Dejneka)
2923   ** Bug 106 (types (COMPLEX FOO) where FOO is an obscure type) was
2924      fixed by Christophe Rhodes. (He actually submitted this patch
2925      months ago, and I delayed until after 0.7.0.)
2926   ** Bug 111 (internal compiler confusion about runtime checks on
2927      FUNCTION types) was fixed by Alexey Dejneka.
2928 * Some internal cleanups (getting rid of variables which aren't
2929   needed now that the byte interpreter is gone) caused the fasl
2930   file format number to change again.
2931
2932 changes in sbcl-0.7.0 relative to sbcl-0.6.13:
2933 * major incompatible change: The default fasl file extension, i.e. the
2934   default extension for files produced by COMPILE-FILE, has changed
2935   to ".fasl", for all architectures. (No longer ".x86f" and ".axpf".) 
2936 * compiler changes:
2937   ** There are many changes in the implementation of the compiler.
2938      SBCL is now essentially a compiler-only implementation of ANSI
2939      Common Lisp. EVAL still "interprets" a few special cases, but 
2940      almost all the interesting cases are handled by creating
2941      a LAMBDA expression, calling COMPILE on it, then calling 
2942      FUNCALL on the result.
2943   ** The EVAL-WHEN code has been rewritten to be ANSI-compliant, and
2944      various related bugs (IR1-1, IR1-2, IR1-3, IR1-3a) have gone away.
2945      Since the code is newer, there might still be some new bugs
2946      (though not as many as before Martin Atzmueller's fixes:-). But 
2947      the new code is substantially simpler and clearer, and hopefully
2948      any remaining bugs will be simpler, less fundamental, and more
2949      fixable then the bugs in the old code.
2950   ** The revised compiler is still a little unsteady on its feet.
2951      In particular,
2952      *** The debugging information it produces (particularly the names
2953          of FUNCTION objects) is sometimes much less useful than what
2954          the old compiler produced.
2955      *** The support for inlining FOO when you (DECLAIM (INLINE FOO))
2956          then do (DEFUN FOO ..) in a non-null lexical environment (e.g.
2957          within a MACROLET) has been temporarily weakened.
2958   ** There are new compiler optimizations for various functions:
2959      *** the sequence functions FIND, POSITION, FIND-IF, POSITION-IF,
2960          FIND-IF-NOT, POSITION-IF-NOT, and FILL
2961      *** the math functions TRUNCATE, FLOOR, and CEILING
2962      *** the function-of-all-trades COERCE
2963      Mostly these should be transparent, but there's one
2964      potentially-annoying problem (bug 117): when the compiler
2965      inline-expands a function and does type analysis on the result,
2966      it can create control paths which have type mismatches, and
2967      when it can't prove that those control paths aren't taken,
2968      it will issue WARNINGs about the type mismatches. This is 
2969      a particular problem in practice for the new sequence functions.
2970      It's not clear how this should be fixed, and for now, a
2971      workaround is given in the entry for 117 in the BUGS file.
2972   ** (Because of the interaction between the two previous items --
2973      occasional inlining problems and new inline expansions -- some
2974      of the new sequence function optimizations won't really kick in
2975      completely until debugging information, and then inlining, are
2976      straightened out in some future version.)
2977 * minor incompatible changes:
2978   ** As part of a bug fix by Christophe Rhodes to DIRECTORY behavior,
2979      DIRECTORY no longer implicitly promotes NIL slots of its
2980      pathname argument to :WILD. In particular, when you ask for the
2981      contents of a directory (which you used to be able to do without
2982      explicit wildcards, e.g. (DIRECTORY "/tmp/")) you now need to use
2983      explicit wildcards, e.g. (DIRECTORY "/tmp/*.*").
2984   ** changes in behavior that ANSI explicitly defines to be
2985      implementation dependent:
2986      *** The new compiler-only implementation still conforms with ANSI,
2987          but acts a little different than before. Besides the obvious
2988          changes in performance tradeoffs (that the cost per form passed
2989          to EVAL has gone up, and the cost per form executed by EVAL
2990          has gone down), the behavior of the system changes a little
2991          because there are no longer any interpreted function objects.
2992          COMPILED-FUNCTION-P is now synonymous with FUNCTIONP, and
2993          e.g. doing COMPILE on the output of interactive DEFUN is
2994          now a no-op.
2995      *** The value of INTERNAL-TIME-UNITS-PER-SECOND has been increased
2996          from 100 to 1000.
2997      *** The default for the USE list in MAKE-PACKAGE and DEFPACKAGE
2998          has changed from (:CL) to NIL.
2999      *** The CHAR-NAME of unprintable ASCII characters which, unlike
3000          e.g. #\Newline and #\Tab, don't have names specified in the
3001          ANSI Common Lisp standard, is now based on their ASCII symbolic
3002          names (#\Nul, #\Soh, #\Stx, etc.) The old CMU-CL-style names
3003          (#\Null, #\^a, #\^b, etc.) are still accepted by NAME-CHAR, but
3004          are no longer used for output.
3005   ** changes in internal implementation constants:
3006      *** The default value of *BYTES-CONSED-BETWEEN-GCS* has doubled, to
3007          4 million. (If your application spends a lot of time GCing and
3008          you have a lot of RAM, you might want to experiment with
3009          increasing it even more.)
3010   ** The SB-C-CALL package has been merged into the SB-ALIEN package.
3011      However, almost all old code should still continue to work without
3012      immediate update, as SB-C-CALL is now a (deprecated) nickname
3013      for SB-ALIEN.
3014   ** Old operator names in the style DEF-FOO are now deprecated in
3015      favor of new corresponding names DEFINE-FOO, for consistency with
3016      the naming convention used in the ANSI standard (DEFSTRUCT, DEFVAR,
3017      DEFINE-CONDITION, DEFINE-MODIFY-MACRO..). This mostly affects
3018      internal symbols, but a few supported extensions like
3019      SB-ALIEN:DEF-ALIEN-FUNCTION are also affected. (So e.g.
3020      DEF-ALIEN-FUNCTION becomes DEFINE-ALIEN-FUNCTION.)
3021   ** The debugger prompt sequence now goes "5]", "5[2]", "5[3]",
3022      etc. as you get deeper into recursive calls to the debugger
3023      command loop, instead of the old "5]", "5]]", "5]]]"
3024      sequence. (I was motivated to do this when squabbles between
3025      ILISP and SBCL left me very deeply nested in the debugger. In the
3026      short term, this change will probably provoke more ILISP/SBCL 
3027      squabbles, but hopefully it will be an improvement in the long run.)
3028   ** SB-ALIEN:DEFINE-ALIEN-FUNCTION (also known by the old deprecated
3029      name DEF-ALIEN-FUNCTION) now does DECLAIM FTYPE for the defined
3030      function, since declaiming return types involving aliens is
3031      (1) annoyingly messy to do by hand and (2) vital to efficient
3032      compilation of code which calls such functions.
3033   ** SB-ALIEN:LOAD-FOREIGN and SB-ALIEN:LOAD-1-FOREIGN are no
3034      longer reexported by the SB-EXT package. They're solely useful
3035      for alien code, so it seems more logical that you should get
3036      them from the SB-ALIEN package, not in SB-EXT.
3037   ** :SB-CONSTRAIN-FLOAT-TYPE, :SB-PROPAGATE-FLOAT-TYPE, and
3038      :SB-PROPAGATE-FUN-TYPE are no longer considered to be optional
3039      features. Instead, the code that they used to control is always
3040      built into the system.
3041 * many other bug fixes
3042   ** DEFSTRUCT and DEFCLASS have been substantially updated to take
3043      advantage of the new EVAL-WHEN stuff and to clean them up in 
3044      general, and they are now more ANSI-compliant in a number of
3045      ways. Martin Atzmueller is responsible for a lot of this.
3046   ** Besides the cleanups discussed above, Martin Atzmueller fixed
3047      several other bugs:
3048      *** fixes in READ-SEQUENCE and WRITE-SEQUENCE
3049      *** correct ERROR type for various file operations
3050      *** some fixes for Lisp streams
3051      *** DEFMETHOD syntax checking
3052      *** changing old weird representation of debug information as
3053          strings (which, among their other deficiencies, don't transform
3054          correctly when you rename packages, and don't change their
3055          print representation when you change things like *PACKAGE*
3056          and *PRINT-LENGTH*) to symbols and lists of symbols
3057      He also made several improvements and fixed several bugs in DESCRIBE.
3058   ** Alexey Dejneka fixed many bugs, including classic bugs and bugs he
3059      discovered himself:
3060      *** misbehavior of WRITE-STRING/WRITE-LINE
3061      *** LOOP over keys of a hash table, LOOP bugs 49b and 81 and 103,
3062          and several other LOOP problems as well
3063      *** DIRECTORY when similar filenames are present
3064      *** DEFGENERIC with :METHOD options
3065      *** bug 126, in (MAKE-STRING N :INITIAL-ELEMENT #\SPACE))
3066      *** bug in the optimization of ARRAY-ELEMENT-TYPE
3067      *** argument ordering in FIND with :TEST option
3068      *** mishandled package designator argument in APROPOS-LIST
3069      *** various problems in the backquote readmacro
3070      *** a bug in APROPOS
3071      *** probably some others that I'm not describing very well here,
3072          since the CVS log documents them by reference to sbcl-devel
3073          messages, and the SourceForge archives aren't working well.:-(
3074   ** Dan Barlow improved the Alpha port (and is making progress on the
3075      PPC port, for those of you who think different).
3076   ** Besides the DIRECTORY fixes and changes mentioned elsewhere,
3077      Christophe Rhodes cleaned up the system self-test scripts (in tests/*),
3078      contributed the optimization of FIND-IF-NOT and POSITION-IF-NOT, and
3079      continues to work on the SPARC port (for those of you in a position
3080      to look down upon our little PC-compatible boxes from a great height). 
3081   ** PPRINT-LOGICAL-BLOCK now copies the *PRINT-LINES* value on entry
3082      and uses that copy, rather than the current dynamic value, when
3083      it's trying to decide whether to truncate output. Thus e.g.
3084        (let ((*print-lines* 50))
3085          (pprint-logical-block (stream nil)
3086            (dotimes (i 10)
3087              (let ((*print-lines* 8))
3088                (print (aref possiblybigthings i) stream)))))
3089      should now truncate the logical block only at 50 lines, instead of
3090      often truncating it at 8 lines, as it did before.
3091 * The doc/cmucl/ directory, containing old CMU CL documentation
3092   from the time of the fork, is no longer part of the base system.
3093   SourceForge has shut down its anonymous FTP service, and with it
3094   my original plan for distributing the old CMU CL documentation
3095   there. For now, if you need these files you can download an old
3096   SBCL source release and extract them from it.
3097 * The fasl file version number changed again, for dozens of reasons,
3098   some of which are apparent above.
3099
3100 changes in sbcl-0.6.13 relative to sbcl-0.6.12:
3101 * a port to the Compaq/DEC Alpha CPU, thanks to Dan Barlow
3102 * Martin Atzmueller ported Tim Moore's marvellous CMU CL DISASSEMBLE
3103   patch, so that DISASSEMBLE output is much nicer.
3104 * The code in the SB-PROFILE package now seems reasonably stable.
3105   I still haven't decided what the final interface should look like
3106   (I'd like PROFILE to interact cleanly with TRACE, since both
3107   facilities use function encapsulation) but if you have a need
3108   for profiling now, you can probably use it successfully with
3109   the current CMU-CL-style interface.
3110 * Pathnames and *DEFAULT-DIRECTORY-DEFAULTS* are much more
3111   ANSI-compliant, thanks to various fixes and tests from Dan Barlow.
3112   Also, at Dan Barlow's suggestion, TRUENAME on a dangling symbolic
3113   link now returns the dangling link itself, and for similar
3114   reasons, TRUENAME on a cyclic symbolic link returns the cyclic
3115   link itself. (In these cases the old code signalled an error and
3116   looped endlessly, respectively.) Thus, DIRECTORY now works even
3117   in the presence of dangling and cyclic symbolic links.
3118 * Compiler trace output (the :TRACE-FILE option to COMPILE-FILE)
3119   is now a supported extension again, since the consensus on
3120   sbcl-devel was that it can be useful for ordinary development
3121   work, not just for debugging SBCL itself.
3122 * The default for SB-EXT:*DERIVE-FUNCTION-TYPES* has changed to
3123   NIL, i.e. ANSI behavior, i.e. the compiler now recognizes
3124   that currently-defined functions might be redefined later with 
3125   different return types. 
3126 * Hash tables can be printed readably, as inspired by CMU CL code
3127   of Eric Marsden and SBCL code of Martin Atzmueller.
3128 * better error handling in CLOS method combination, thanks to 
3129   Martin Atzmueller porting Pierre Mai's CMU CL patches
3130 * more overflow fixes for >16Mbyte I/O buffers
3131 * A bug in READ has been fixed, so that now a single Ctrl-D
3132   character suffices to cause end-of-file on character streams.
3133   In particular, now you only need one Ctrl-D at the command
3134   line (not two) to exit SBCL.
3135 * fixed bug 26: ARRAY-DISPLACEMENT now returns (VALUES NIL 0) for 
3136   undisplaced arrays.
3137 * fixed bug 107 (reported as a CMU CL bug by Erik Naggum on 
3138   comp.lang.lisp 2001-06-11): (WRITE #*101 :RADIX T :BASE 36) now
3139   does the right thing.
3140 * The implementation of some type tests, especially for CONDITION
3141   types, is now tidier and maybe faster, due to CMU CL code
3142   originally by Douglas Crosher, ported by Martin Atzmueller.
3143 * Some math functions have been fixed, and there are new
3144   optimizers for deriving the types of COERCE and ARRAY-ELEMENT-TYPE,
3145   thanks to Raymond Toy's work on CMU CL, ported by Martin Atzmueller.
3146 * (There are also some new optimizers in contrib/*-extras.lisp. Those
3147   aren't built into sbcl-0.6.13, but are a sneak preview of what's
3148   likely to be built into sbcl-0.7.0.)
3149 * A bug in COPY-READTABLE was fixed. (Joao Cachopo's patch to CMU
3150   CL, ported to SBCL by Martin Atzmueller)
3151 * DESCRIBE now gives more information in some cases. (Pierre Mai's
3152   patch to CMU CL, ported to SBCL by Martin Atzmueller)
3153 * Martin Atzmueller and Bill Newman fixed some bugs in INSPECT.
3154 * There's a new slam.sh hack to shorten the edit/compile/debug
3155   cycle for low-level changes to SBCL itself, and a new
3156   :SB-AFTER-XC-CORE target feature to control the generation of
3157   the after-xc.core file needed by slam.sh.
3158 * minor incompatible change: The ENTRY-POINTS &KEY argument to 
3159   COMPILE-FILE is no longer supported, so that now every function
3160   gets an entry point, so that block compilation looks a little
3161   more like the plain vanilla ANSI section 3.2.2.3 scheme.
3162 * minor incompatible change: SB-EXT:GET-BYTES-CONSED now
3163   returns the number of bytes consed since the system started,
3164   rather than the number consed since the first time the function
3165   was called. (The new definition parallels ANSI functions like
3166   CL:GET-INTERNAL-RUN-TIME.)
3167 * minor incompatible change: The old CMU-CL-style DIRECTORY options,
3168   i.e. :ALL, :FOLLOW-LINKS, and :CHECK-FOR-SUBDIRS, are no longer
3169   supported. Now DIRECTORY always does the abstract Common-Lisp-y
3170   thing, i.e. :ALL T :FOLLOW-LINKS T :CHECK-FOR-SUBDIRS T.
3171 * Fasl file version numbers are now independent of the target CPU,
3172   since historically most system changes which required version
3173   number changes have affected all CPUs equally. Similarly, 
3174   the byte fasl file version is now equal to the ordinary
3175   fasl file version.
3176
3177 changes in sbcl-0.6.12 relative to sbcl-0.6.11:
3178 * incompatible change: The old SB-EXT:OPTIMIZE-INTERFACE declaration
3179   is no longer recognized. I apologize for this, because it was
3180   listed in SB-EXT as a supported extension, but I found that
3181   its existing behavior was poorly specified, as well as incorrectly
3182   specified, and it looked like too much of a mess to straighten it
3183   out. I have enough on my hands trying to get ANSI stuff to work..
3184 * many patches ported from CMU CL by Martin Atzmueller, with 
3185   half a dozen bug fixes in pretty-printing and the debugger, and
3186   half a dozen others elsewhere
3187 * fixed bug 13: Floating point infinities are now supported again.
3188   They might still be a little bit flaky, but thanks to bug reports
3189   from Nathan Froyd and CMU CL patches from Raymond Toy they're not
3190   as flaky as they were.
3191 * The --noprogrammer command line option is now supported. (Its
3192   behavior is slightly different in detail from what the old man
3193   page claimed it would do, but it's still appropriate under the
3194   same circumstances that the man page talks about.)
3195 * The :SB-PROPAGATE-FLOAT-TYPE and :SB-PROPAGATE-FUN-TYPE features
3196   are now supported, and enabled by default. Thus, the compiler can
3197   handle many floating point and complex operations much less
3198   inefficiently. (Thus e.g. you can implement a complex FFT
3199   without consing!)
3200 * The compiler now detects type mismatches between DECLAIM FTYPE 
3201   and DEFUN better, and implements CHECK-TYPE more correctly, and
3202   SBCL builds under CMU CL again despite its non-ANSI EVAL-WHEN,
3203   thanks to patches from Martin Atzmueller.
3204 * various fixes to make the cross-compiler more portable to
3205   ANSI-conforming-but-different cross-compilation hosts (notably
3206   Lispworks for Windows, following bug reports from Arthur Lemmens)
3207 * A bug in READ-SEQUENCE for CONCATENATED-STREAM, and a gross
3208   ANSI noncompliance in DEFMACRO &KEY argument parsing, have been
3209   fixed thanks to Pierre Mai's CMU CL patches.
3210 * fixes to keep the system from overflowing internal counters when
3211   it tries to use i/o buffers larger than 16M bytes
3212 * fixed bug 45a: Various internal functions required to support
3213   complex special functions have been merged from CMU CL sources.
3214   (When I was first setting up SBCL, I misunderstood a compile-time
3215   conditional #-OLD-SPECFUN, and so accidentally deleted them.)
3216 * improved support for type intersection and union, fixing bug 12
3217   (e.g., now (SUBTYPEP 'KEYWORD 'SYMBOL)=>T,T) and some other
3218   more obscure bugs as well
3219 * some steps toward byte-compiling non-performance-critical
3220   parts of the system, courtesy of patches from Martin Atzmueller
3221 * Christophe Rhodes has made some debian packages of sbcl at
3222   <http://www-jcsu.jesus.cam.ac.uk/ftp/pub/debian/lisp>.
3223   From his sbcl-devel e-mail of 2001-04-08 they're not completely
3224   stable, but are nonetheless usable. When he's ready, I'd be happy
3225   to add them to the SourceForge "File Releases" section. (And if
3226   anyone wants to do RPMs or *BSD packages, they'd be welcome too.)
3227 * new fasl file format version number (because of changes in 
3228   internal representation of (OR ..) types to accommodate the new
3229   support for (AND ..) types, among other things)
3230
3231 changes in sbcl-0.6.11 relative to sbcl-0.6.10:
3232 * Martin Atzmueller pointed out that bugs #9 and #25 are gone in
3233   current SBCL.
3234 * bug 34 fixed by Martin Atzmueller: dumping/loading instances works
3235   better
3236 * fixed bug 40: TYPEP, SUBTYPEP, UPGRADED-ARRAY-ELEMENT-TYPE, 
3237   and UPGRADED-COMPLEX-PART-TYPE now work better with of compound
3238   types built from undefined types, e.g. '(VECTOR SOME-UNDEF-TYPE).
3239 * DESCRIBE now works on structure objects again.
3240 * Most function call argument type mismatches are now handled as
3241   STYLE-WARNINGs instead of full WARNINGs, since the compiler doesn't
3242   know whether the function will be redefined before the call is
3243   executed. (The compiler could flag local calls with full WARNINGs,
3244   as per the ANSI spec "3.2.2.3 Semantic Constraints", but right now
3245   it doesn't keep track of enough information to know whether calls
3246   are local in this sense.)
3247 * Compiler output is now more verbose, with messages truncated
3248   later than before. (There should be some supported way for users
3249   to override the default verbosity, but I haven't decided how to 
3250   provide it yet, so this behavior is still controlled by the internal
3251   SB-C::*COMPILER-ERROR-PRINT-FOO* variables in
3252   src/compiler/ir1util.lisp.)
3253 * Fasl file format version numbers have increased again, because
3254   support for the Gray streams extension changes the layout of the
3255   system's STREAM objects.
3256 * The Gray subclassable streams extension now works, thanks to a 
3257   patch from Martin Atzmueller.
3258 * The full LOAD-FOREIGN extension (not just the primitive
3259   LOAD-FOREIGN-1) now works, thanks to a patch from Martin Atzmueller.
3260 * The default behavior of RUN-PROGRAM has changed. Now, unlike CMU CL
3261   but like most other programs, it defaults to copying the Unix
3262   environment from the original process instead of starting the
3263   new process in an empty environment.
3264 * Extensions which manipulate the Unix environment now support
3265   an :ENVIRONMENT keyword option which doesn't smash case or 
3266   do other bad things. The CMU-CL-style :ENV option is retained
3267   for porting convenience.
3268 * LOAD-FOREIGN (and LOAD-1-FOREIGN) now support logical pathnames,
3269   as per Daniel Barlow's suggestion and Martin Atzmueller's patch
3270
3271 changes in sbcl-0.6.10 relative to sbcl-0.6.9:
3272
3273 * A patch from Martin Atzmueller seems to have solved the SIGINT
3274   problem, and as far as we know, signal-handling now works cleanly.
3275   (If you find any new bugs, please report them!)
3276 * The system no longer defaults Lisp source file names to types
3277   ".l", ".cl", or ".lsp", but only to ".lisp". 
3278 * The compiler no longer uses special default file extensions for
3279   byte-compiled code. (The ANSI definition of COMPILE-FILE-PATHNAME
3280   seems to expect a single default extension for all compiled code,
3281   and there's no compelling reason to try to stretch the standard
3282   to allow two different extensions.) Instead, byte-compiled files
3283   default to the same extension as native-compiled files.
3284 * Fasl file format version numbers have increased again, because
3285   a rearrangement of internal implementation packages made some 
3286   dumped symbols in old fasl files unreadable in new cores.
3287 * DECLARE/DECLAIM/PROCLAIM logic is more nearly ANSI in general, with
3288   many fewer weird special cases.
3289 * Bug #17 (differing COMPILE-FILE behavior between logical and 
3290   physical pathnames) has been fixed, and some related misbehavior too,
3291   thanks to a patch from Martin Atzmueller.
3292 * Bug #30 (reader problems) is gone, thanks to a CMU CL patch
3293   by Tim Moore, ported to SBCL by Martin Atzmueller.
3294 * Martin Atzmueller fixed several filesystem-related problems,
3295   including bug #36, in part by porting CMU CL patches, which were
3296   written in part by Paul Werkowski.
3297 * More compiler warnings in src/runtime/ are gone, thanks to 
3298   more patches from Martin Atzmueller.
3299 * Martin Atzmueller pointed out that bug 37 was fixed by his patches
3300   some time ago.
3301
3302 changes in sbcl-0.6.9 relative to sbcl-0.6.8:
3303
3304 * DESCRIBE now works on CONDITION objects.
3305 * The debugger now handles errors which arise when trying to print
3306   *DEBUG-CONDITION*, so that it's less likely to fall into infinite
3307   regress.
3308 * The build system now uses an additional file, customize-target-features.lisp,
3309   to allow local modifications to the target *FEATURES* list. (The point of
3310   this is that now I can set up a custom configuration, e.g. with :SB-SHOW
3311   debugging features enabled, without having to worry about propagating it
3312   into everyone's system when I do a "cvs update".) When no
3313   customize-target-features.lisp file exists, the target *FEATURES* list
3314   should be constructed the same way as before.
3315 * fixed bugs in DEFCONSTANT ANSI-compatibility:
3316   ** DEFCONSTANT now tests reassignments using EQL, not EQUAL, in order to 
3317      warn about behavior which is undefined under the ANSI spec. Note: This
3318      is specified by ANSI, but it's not very popular with programmers.
3319      If it causes you problems, take a look at the new SB-INT:DEFCONSTANT-EQX
3320      macro in the SBCL sources for an example of a workaround which you
3321      might use to make portable ANSI-standard code which does what you want.
3322   ** DEFCONSTANT's implementation is now based on EVAL-WHEN instead of on
3323      pre-ANSI IR1 translation magic, so it does the ANSI-specified thing
3324      when it's used as a non-toplevel form. (This is required in order
3325      to implement the DEFCONSTANT-EQX macro.)
3326   ** (DEFCONSTANT X 1) (DEFVAR X) (SETF X 2) no longer "works".
3327   ** Unfortunately, non-toplevel DEFCONSTANT forms can still do some
3328      funny things, due to bugs in the implementation of EVAL-WHEN
3329      (bug #IR1-3). This probably won't be fixed until 0.7.x. (Fortunately,
3330      non-toplevel DEFCONSTANTs are uncommon.)
3331 * The core file version number and fasl file version number have been 
3332   incremented, because the old noncompliant DEFCONSTANT behavior involved
3333   calling functions which no longer exist, and because I also took the
3334   opportunity to chop an unsupported slot out of the DEBUG-SOURCE structure.
3335 * fixed bug 1 (error handling before read-eval-print loop starts), and
3336   redid debugger restarts and related debugger commands somewhat while
3337   doing so:
3338   ** The QUIT debugger command is gone, since it did something
3339      rather different than the SB-EXT:QUIT command, and since it never
3340      worked properly outside the main toplevel read/eval/print loop.
3341      Invoking the new TOPLEVEL restart provides the same functionality.
3342   ** The GO debugger command is also gone, since you can just invoke
3343      the CONTINUE restart directly instead.
3344   ** The TOP debugger command is also gone, since it's redundant with the
3345      FRAME 0 command, and since it interfered with abbreviations for the
3346      TOPLEVEL restart.
3347 * The system now recovers better from non-PACKAGE values of the *PACKAGE*
3348   variable.
3349 * The system now understands compound CONS types (e.g. (CONS FIXNUM T))
3350   as required by ANSI. (thanks to Douglas Crosher's CMU CL patches, with
3351   some porting work by Martin Atzmueller)
3352 * Martin Atzmueller reviewed the CMU CL mailing lists and came back
3353   with a boatload of patches which he ported to SBCL. Now that those
3354   have been applied,
3355   ** The system tries to make sure that its low-priority messages
3356      are prefixed by semicolons, to help people who like to use
3357      syntax highlighting in their ILISP buffer. (This patch
3358      was originally due to Raymond Toy.)
3359   ** The system now optimizes INTEGER-LENGTH better, thanks to more
3360      patches originally written by Raymond Toy.
3361   ** The compiler understands coercion between single-value and 
3362      multiple-VALUES type expressions better, getting rid of some very
3363      weird behavior, thanks to patches originally by Robert MacLachlan
3364      and Douglas Crosher.
3365   ** The system understands ANSI-style non-KEYWORD &KEY arguments in 
3366      lambda lists, thanks to a patch originally by Pierre Mai.
3367   ** The system no longer bogusly warns about "abbreviated type
3368      declarations".
3369   ** The compiler gets less confused by inlining and RETURN-FROM,
3370      thanks to some patches originally by Tim Moore.
3371   ** The system no longer hangs when dumping circular lists to fasl
3372      files, thanks to a patch originally from Douglas Crosher.
3373 * Martin Atzmueller also fixed ROOM, so that it no longer fails with an
3374   undefined function error.
3375 * gave up on fixing bug 3 (forbidden-by-ANSI warning for type mismatch
3376   in structure slot initforms) for now, documented workaround instead:-|
3377 * fixed bug 4 (no WARNING for DECLAIM FTYPE of slot accessor function)
3378 * fixed bug 5: added stubs for various Gray stream functions called
3379   in the not-a-CL:STREAM case, so that even when Gray streams aren't
3380   installed, at least appropriate type errors are generated
3381 * fixed bug 8: better reporting of various PROGRAM-ERRORs
3382 * fixed bug 9: IGNORE and IGNORABLE now work reasonably and more
3383   consistently in DEFMETHOD forms. 
3384 * removed bug 21 from BUGS, since Martin Atzmueller points out that 
3385   it doesn't seem to affect SBCL after all
3386 * The C runtime system now builds with better optimization and many
3387   fewer warnings, thanks to lots of cleanups by Martin Atzmueller.
3388
3389 changes in sbcl-0.6.8 relative to sbcl-0.6.7:
3390
3391 * The system is now under CVS at SourceForge (instead of the
3392   CVS repository on my home machine).
3393 * The new signal handling code has been tweaked to treat register
3394   contents as (UNSIGNED-BYTE 32), as the old CMU CL code did,
3395   instead of (SIGNED-BYTE 32), as the C header files have it. (Code 
3396   downstream, e.g. in debug-int.lisp, has implicit dependencies
3397   on the unsignedness of integer representation of machine words, 
3398   and that caused the system to bomb out with infinite regress
3399   when trying to recover from type errors involving signed values,
3400   e.g. (BUTLAST '(1 2 3) -1).)
3401 * (BUTLAST NIL) and (NBUTLAST NIL) now return NIL as they should.
3402   (This was one of the bugs Peter Van Eynde reported back in July.)
3403 * The system now uses code inspired by Colin Walters' O(N)
3404   implementation of MAP (from the cmucl-imp@cons.org mailing
3405   list, 2 September 2000) when it can't use a DEFTRANSFORM to
3406   inline the MAP operation, and there is more than one
3407   sequence argument to the MAP call (so that it can't just
3408   do ETYPECASE once and for all based on the type of the
3409   single sequence argument). (The old non-inline implementation
3410   of the general M-argument sequence-of-length-N case required
3411   O(M*N*N) time when any of the sequence arguments were LISTs.)
3412 * The QUIT :UNIX-CODE keyword argument has been renamed to 
3413   QUIT :UNIX-STATUS. (The old name still works, but is deprecated.)
3414 * Raymond Wiker's patches to port RUN-PROGRAM from CMU CL to SBCL
3415   have been added.
3416 * Raymond Wiker's patches to port dynamic loading from Linux to
3417   FreeBSD have been added.
3418 * The BUGS file is now more nearly up to date, thanks in large part
3419   to Martin Atzmueller's review of it.
3420 * The debugger now flushes standard output streams before it begins
3421   its output ("debugger invoked" and so forth).
3422 * The core version number and fasl file version number have both
3423   been incremented, because of incompatible changes in the layout
3424   of static symbols.
3425 * FINISH-OUTPUT is now called more consistently on QUIT. (It
3426   used to not be called for a saved Lisp image.)
3427 * Martin Atzmueller's version of a patch to fix a compiler crash,
3428   as posted on sbcl-devel 13 September 2000, has been installed.
3429 * Instead of installing Martin Atzmueller's patch for the
3430   compiler transform for SUBSEQ, I deleted the compiler transform,
3431   and transforms for some similar consing operations.
3432 * A bug in signal handling which kept TRACE from working on OpenBSD
3433   has been fixed.
3434 * added enough DEFTRANSFORMs to allow (SXHASH 'FOO) to be optimized
3435   away by constant folding
3436 * The system now defines its address space constants in one place
3437   (in the Lisp sources), and propagates them automatically elsewhere
3438   (through GENESIS and the sbcl.h file). Therefore, patching the
3439   address map is less unnecessarily tedious and error-prone. The
3440   Lisp names of address space constants have also been systematized.
3441 * CVS tags like dollar-Header-dollar have been removed from
3442   the sources, because they have never saved me trouble and
3443   they've been source of trouble working with patches and other
3444   diff-related operations.
3445 * fixed the PROG1-vs.-PROGN bug in HANDLER-BIND (reported by 
3446   ole.rohne@cern.ch on cmucl-help@cons.org 2000-10-25)
3447
3448 changes in sbcl-0.6.7 relative to sbcl-0.6.6:
3449
3450 * The system has been ported to OpenBSD.
3451 * The system now compiles with a simple "sh make.sh" on the systems
3452   that it's supported on. I.e., now you no longer need to tweak 
3453   text in the target-features.lisp-expr and symlinks in src/runtime/
3454   by hand, the make.sh takes care of it for you.
3455 * The system is no longer so grossly inefficient when compiling code
3456   involving vectors implemented as general (not simple) vectors (VECTOR T),
3457   so code which dares to use VECTOR-PUSH-EXTEND and FILL-POINTER, or
3458   which dares to use the various sequence functions on non-simple 
3459   vectors, takes less of a performance hit.
3460   * There is now a primitive type predicate VECTOR-T-P
3461     to test for the (VECTOR T) type, so that e.g.
3462         (DEFUN FOO (V) (DECLARE (TYPE (VECTOR T) V)) (AREF V 3))
3463     can now be compiled with some semblance of efficiency. (The old code
3464     turned the type declaration into a full call to %TYPEP at runtime!)
3465   * AREF on (VECTOR T) is still not fast, since it's still compiled
3466     as a full call to SB-KERNEL:DATA-VECTOR-REF, but at least the
3467     ETYPECASE used in DATA-VECTOR-REF is now compiled reasonably
3468     efficiently. (The old version made full calls to SUBTYPEP at runtime!)
3469   * (MAKE-ARRAY 12 :FILL-POINTER T) is now executed less inefficiently,
3470     without making full calls to SUBTYPEP at runtime.
3471   (Some analogous efficiency issues for non-simple vectors specialized to
3472   element types other than T, or for non-simple multidimensional arrays,
3473   have not been addressed. They could almost certainly be handled the
3474   same way if anyone is motivated to do so.)
3475 * The changes in array handling break binary compatibility, so
3476   *BACKEND-FASL-FILE-VERSION* has been bumped to 4.
3477 * (TYPEP (MAKE-ARRAY 12 :FILL-POINTER 4) 'VECTOR) now returns (VALUES T)
3478   instead of (VALUES T T).
3479 * By following the instructions that Dan Barlow posted to sbcl-devel
3480   on 2 July 2000, I was able to enable primitive dynamic object
3481   file loading code for Linux. The full-blown CMU CL LOAD-FOREIGN
3482   functionality is not implemented (since it calls ld to resolve
3483   library references automatically, requiring RUN-PROGRAM for its
3484   implementation), but a simpler SB-EXT:LOAD-1-FOREIGN (which doesn't
3485   try to resolve library references) is now supported.
3486 * The system now flushes the standard output streams when it terminates,
3487   unless QUIT is used with the RECKLESSLY-P option set. It also flushes
3488   them at several other probably-convenient times, e.g. in each pass of
3489   the toplevel read-eval-print loop, and after evaluating a form given
3490   as an "--eval" command-line option. (These changes were motivated by a
3491   discussion of stream flushing issues on cmucl-imp in August 2000.) 
3492 * The source transform for TYPEP of array types no longer assumes
3493   that an array whose element type is a not-yet-defined type 
3494   is implemented as an array of T, but instead punts, so that the 
3495   type will be interpreted at runtime.
3496 * There is now some support for cross-compiling in make.sh: each of
3497   the phases of make.sh has its own script. (This should be transparent
3498   to people doing ordinary, non-cross-compile builds.)
3499 * Since my laptop doesn't have hundreds of megabytes of memory like
3500   my desktop machine, I became more motivated to do some items on
3501   my to-do list in order to reduce the size of the system a little:
3502   ** Arrange for various needed-only-at-cold-init things to be
3503      uninterned after cold init. To support this, those things have
3504      been renamed from FOO and *FOO* to !FOO and *!FOO* (i.e., all
3505      symbols with such names are now uninterned after cold init).
3506   ** Bind SB!C::*TOP-LEVEL-LAMBDA-MAX* to a nonzero value when building
3507      fasl files for cold load.
3508   ** Remove the old compiler structure pooling code (which used to 
3509      be conditional on the target feature :SB-ALLOC) completely.
3510   ** Redo the representation of some data in cold init to be more compact.
3511   (I also looked into supporting byte compiled code at bootstrap time,
3512   which would probably reduce the size of the system a lot, but that
3513   looked too complicated, so I punted for now.)
3514 * The maximum signal nesting depth in the src/runtime/ support code has
3515   been reduced from 4096 to 256. (I don't know any reason for the very
3516   large old value. If the new smaller value turns out to break something,
3517   I'll probably just bump it back up.)
3518 * PPRINT-LOGICAL-BLOCK is now pickier about the types of its arguments,
3519   as per ANSI.
3520 * Many, many bugs reported by Peter Van Eynde have been added to
3521   the BUGS list; some have even been fixed.
3522 * While enabling dynamic object file loading, I tried to make the 
3523   code easier to understand, renaming various functions and variables
3524   with less ambiguous names, and changing some function calling
3525   conventions to be Lispier (e.g. returning NIL instead of 0 for failure).
3526 * While trying to figure out how to do the OpenBSD port, I tried to 
3527   clean up some of the code in src/runtime/. In particular, I dropped
3528   support for non-POSIX signal handling, added various comments, 
3529   tweaked the code to reduce the number of compilation warnings, and
3530   renamed some files to increase consistency.
3531 * To support the new automatic configuration functionality in make.sh,
3532   the source file target-features.lisp-expr has been replaced with the
3533   source file base-target-features.lisp-expr and the machine-generated
3534   file local-target-features.lisp-expr.
3535 * fixed a stupid quoting error in make.sh so that using CMU CL
3536   "lisp -batch" as cross-compilation host works again
3537
3538 changes in sbcl-0.6.6 relative to sbcl-0.6.5:
3539
3540 * DESCRIBE no longer tries to call itself recursively to describe
3541   bound/fbound values, so that it no longer fails on symbols which are
3542   bound to themselves (like keywords, T, and NIL).
3543 * DESCRIBE now works on generic functions.
3544 * The printer now prints less-screwed-up representations of closures
3545   (not naively trying to bogusly use the %FUNCTION-NAME accessor on them).
3546 * A private symbol is used instead of the :EMPTY keyword previously 
3547   used to mark empty slots in hash tables. Thus 
3548         (DEFVAR *HT* (MAKE-HASH-TABLE))
3549         (SETF (GETHASH :EMPTY *HT*) :EMPTY)
3550         (MAPHASH (LAMBDA (K V) (FORMAT T "~&~S ~S~%" K V)))
3551   now does what ANSI says that it should. (You can still get 
3552   similar noncompliant behavior if bang on the hash table
3553   implementation with all the symbols you get back from 
3554   DO-ALL-SYMBOLS, but at least that's a little harder to do.)
3555   This breaks binary compatibility, since tests for equality to 
3556   :EMPTY are wired into things like the macroexpansion of 
3557   WITH-HASH-TABLE-ITERATOR in FASL files produced by earlier
3558   implementations.
3559 * There's now a minimal placeholder implementation for CL:STEP,
3560   as required by ANSI.
3561 * An obscure bug in the interaction of the normal compiler, the byte
3562   compiler, inlining, and structure predicates has been patched
3563   by setting the flags for the DEFTRANSFORM of %INSTANCE-TYPEP as
3564   :WHEN :BOTH (as per Raymond Toy's suggestion on the cmucl-imp@cons.org
3565   mailing list).
3566 * Missing ordinary arguments in a macro call are now detected even
3567   when the macro lambda list contains &KEY or &REST.
3568 * The debugger no longer complains about encountering the top of the
3569   stack when you type "FRAME 0" to explicitly instruct it to go to
3570   the top of the stack. And it now prints the frame you request even
3571   if it's the current frame (instead of saying "You are here.").
3572 * As specified by ANSI, the system now always prints keywords
3573   as #\: followed by SYMBOL-NAME, even when *PACKAGE* is the
3574   KEYWORD package.
3575 * The default initial SIZE of HASH-TABLEs is now smaller.
3576 * Type information from CLOS class dispatch is now propagated
3577   into DEFMETHOD bodies, so that e.g.
3578         (DEFMETHOD FOO ((X SINGLE-FLOAT))
3579           (+ X 123.0))
3580   is now basically equivalent to 
3581         (DEFMETHOD FOO ((X SINGLE-FLOAT))
3582           (DECLARE (TYPE SINGLE-FLOAT X))
3583           (+ X 123.0))
3584   and the compiler can compile (+ X 123.0) as a SINGLE-FLOAT-only
3585   operation, without having to do run-time type dispatch.
3586 * The macroexpansion of DEFMETHOD has been tweaked so that it has
3587   reasonable behavior when arguments are declared IGNORE or IGNORABLE.
3588 * Since I don't seem to be making big file reorganizations very often
3589   any more (and since my archive of sbcl-x.y.zv.tar.bz2 snapshots
3590   is overflowing my ability to conveniently back them up), I've finally
3591   checked the system into CVS. (The CVS repository is on my home system,
3592   not at SourceForge -- putting it on SourceForge might come later.)
3593 * SB-EXT:*GC-NOTIFY-STREAM* has been added, to control where the 
3594   high-level GC-NOTIFY-FOO functions send their output. (There's
3595   still very little control of where low-level verbose GC functions
3596   send their output.) The SB-EXT:*GC-VERBOSE* variable now controls
3597   less than it used to -- the GC-NOTIFY-FOO functions are now under
3598   the control of *GC-NOTIFY-STREAM*, not *GC-VERBOSE*.
3599 * The system now stores the version string (LISP-IMPLEMENTATION-VERSION)
3600   in only one place in the source code, and propagates it automatically
3601   everywhere that it's needed. Thus e.g. when I bump the version from
3602   0.6.6 to 0.6.7, I'll only need to modify the sources in one place.
3603 * The C source files now include boilerplate legalese and documentation
3604   at the head of each file (just as the Lisp source files already did).
3605 * At Dan Barlow's suggestion, the hyperlink from the SBCL website
3606   to his page will be replaced with a link to his new CLiki service.
3607
3608 changes in sbcl-0.6.5 relative to sbcl-0.6.4:
3609
3610 * Raymond Wiker's patches to port the system to FreeBSD have been merged.
3611 * The build process now looks for GNU make under the default name "gmake",
3612   instead of "make" as it used to. If GNU make is not available as "gmake"
3613   on your system, you can change this default behavior by setting the 
3614   GNUMAKE environment variable.
3615 * Replace #+SB-DOC with #!+SB-DOC in seq.lisp so that the system 
3616   can build without error under CMU CL.
3617
3618 changes in sbcl-0.6.4 relative to sbcl-0.6.3:
3619
3620 * There is now a partial SBCL user manual (with some new text and some
3621   text cribbed from the CMU CL manual). 
3622 * The beginnings of a profiler have been added (starting with the
3623   CMU CL profiler and simplifying and cleaning up). Eventually the
3624   main interface should be through the TRACE macro, but for now, 
3625   it's still accessed through vaguely CMU-CL-style functions and macros
3626   exported from the package SB-PROFILE.
3627 * Some problems left over from porting CMU CL to the new
3628   cross-compilation bootstrap process have been cleaned up:
3629   ** DISASSEMBLE now works. (There was a problem in using DEFMACRO
3630      instead of SB!XC:DEFMACRO, compounded by an oversight on my 
3631      part when getting rid of the compiler *BACKEND* stuff.)
3632   ** The value of *NULL-TYPE* was screwed up, because it was
3633      being initialized before the type system knew the final
3634      definition of the 'NULL type. This screwed up several key
3635      optimizations in the compiler, causing inefficiency in all sorts
3636      of places. (I found it because I wanted to understand why
3637      GET-INTERNAL-RUN-TIME was consing.) 
3638 * fixed a bug in DEFGENERIC which was causing it to overwrite preexisting
3639   PROCLAIM FTYPE information. Unfortunately this broke binary 
3640   compatibility again, since now the forms output by DEFGENERIC
3641   to refer to functions which didn't exist in 0.6.3.
3642 * added declarations so that SB-PCL::USE-CACHING-DFUN-P 
3643   can use the new (as of 0.6.3) transform for SOME into MAP into 
3644   inline code
3645 * changed (MOD 1000000) type declarations for Linux timeval.tv_usec slot
3646   values to (INTEGER 0 1000000), so that the time code will no longer
3647   occasionally get blown up by Linux returning 1000000 microseconds
3648 * PRINT-UNREADABLE-OBJECT has been tweaked to make the spacing of
3649   its output conform to the ANSI spec. (Alas, this makes its output
3650   uglier in the :TYPE T :IDENTITY NIL case, but them's the breaks.)
3651 * A full call to MAP NIL with a single sequence argument no longer conses.
3652 * fixes to problems pointed out by Martin Atzmueller:
3653   * The manual page no longer talks about multiprocessing as though
3654     it were currently supported.
3655   * The ILISP support patches have been removed from the distribution,
3656     because as of version 5.10.1, ILISP now supports SBCL without us
3657     having to maintain patches.
3658 * added a modified version of Raymond Toy's recent CMU CL patch for
3659   EQUALP comparison of HASH-TABLE
3660
3661 changes in sbcl-0.6.3 relative to sbcl-0.6.2:
3662
3663 * The system still can't cross-compile itself with
3664   *TYPE-SYSTEM-INITIALIZED* (and all the consistency checks that
3665   entails), but at least it can compile more of itself that way
3666   than it used to be able to, and various buglets which were uncovered
3667   by trying to cross-compile itself that way have now been fixed.
3668 * This release breaks binary compatibility again. This time 
3669   at least I've incremented the FASL file format version to 2, so that the
3670   problem can be detected reliably instead of just causing weird errors.
3671 * various new style warnings:
3672   ** using DEFUN, DEFMETHOD, or DEFGENERIC to overwrite an old definition
3673   ** using the deprecated EVAL/LOAD/COMPILE situation names in EVAL-WHEN
3674   ** using the lexical binding of a variable named in the *FOO* style
3675 * DESCRIBE has been substantially rewritten. It now calls DESCRIBE-OBJECT
3676   as specified by ANSI.
3677 * *RANDOM-STATE* is no longer automatically initialized from 
3678   (GET-UNIVERSAL-TIME), but instead from a constant seed. Thus, the
3679   default behavior of the system is to repeat its behavior every time
3680   it's run. If you'd like to change this behavior, you can always
3681   explicitly set the seed from (GET-UNIVERSAL-TIME); whereas under the 
3682   old convention there was no comparably easy way to get the system to 
3683   repeat its behavior every time it was run.
3684 * Support for the pre-CLTL2 interpretation of FUNCTION declarations as
3685   FTYPE declarations has been removed, in favor of their ANSI
3686   interpretation as TYPE FUNCTION declarations. (See p. 228 of CLTL2.)
3687 * The quantifiers SOME, EVERY, NOTANY, and NOTEVERY no longer cons when
3688   the types of their sequence arguments can be determined at compile time.
3689   This is done through a new open code expansion for MAP which eliminates
3690   consing for (MAP NIL ..), and reduces consing otherwise, when sequence
3691   argument types can be determined at compile time.
3692 * The optimizer now transforms COERCE into an identity operation when it 
3693   can prove that the coerced object is already of the correct type. (This 
3694   can be a win for machine generated code, including the output of other
3695   optimization transforms, such as the MAP transform above.)
3696 * Credit information has been moved from source file headers into CREDITS.
3697 * Source file headers have been made more standard.
3698 * The CASE macro now compiles without complaining even when it has
3699   no clauses.
3700
3701 changes in sbcl-0.6.2 relative to sbcl-0.6.1:
3702
3703 * (Note that the way that the PCL macroexpansions were rewritten
3704   to accommodate the change in DEFGENERIC below breaks binary
3705   compatibility. That is, fasl files compiled under sbcl-0.6.1 may
3706   not run under sbcl-0.6.2. Once we get out of alpha releases,
3707   i.e. hit release 1.0.0, we'll probably try to maintain binary
3708   compatibility between maintenance releases, e.g. between sbcl-1.4.3
3709   and sbcl-1.4.4. Until then, however, it might be fairly common
3710   for maintenance releases to break binary compatibility.)
3711 * A bug in the calculation of WARNINGS-P and FAILURE-P in COMPILE-FILE
3712   has been fixed.
3713 * The reporting of unhandled signals has been changed to print some
3714   explanatory text as well as the report form. (Previously only
3715   the report form was printed.)
3716 * The macroexpansion for DEFGENERIC now DECLAIMs the function that
3717   it defines, so that the compiler no longer issues undefined function
3718   warnings for compiled-but-not-yet-loaded generic functions. 
3719 * The CLTL-style "LISP" and "USER" nicknames for the "COMMON-LISP"
3720   and "COMMON-LISP-USER" packages have been removed. Now only the "CL"
3721   and "CL-USER" standard nicknames from the "11.1.2 Standardized Packages"
3722   section of the ANSI spec are supported.
3723 * The "" nickname for the "KEYWORD" package has been removed. 
3724   The reader still handles symbol tokens which begin with a package marker
3725   as keywords, but it doesn't expose its mechanism for doing so in the
3726   (PACKAGE-NICKNAMES (FIND-PACKAGE "KEYWORD")) list.
3727 * The system now issues STYLE-WARNINGs for contradictory TYPE 
3728   proclamations. (Warnings for contradictory FTYPE proclamations would
3729   be nice too, but those can't be done usefully unless the type system
3730   is made smarter about FUNCTION types.)
3731 * The names of source files "*host-*.lisp" and "*target-*.lisp" have been 
3732   systematized, so that "*target-*.lisp is supposed to exist only on the
3733   target and imply that there's a related file which exists on the
3734   host, and *host-*.lisp is supposed to exist only on the host and imply
3735   that there's a related file which exists on the target. This involves a
3736   lot of renaming. Hopefully the acute confusion caused by the renaming
3737   will be justified by the reduction in chronic confusion..
3738   ** runtime-type.lisp    -> early-target-type.lisp
3739   ** target-type.lisp     -> late-target-type.lisp
3740   ** early-host-format.lisp -> early-format.lisp
3741   ** late-host-format.lisp -> late-format.lisp
3742   ** host-error.lisp      -> misc-error.lisp
3743   ** early-error.lisp     -> early-target-error.lisp
3744   ** late-error.lisp      -> late-target-error.lisp
3745   ** host-defboot.lisp    -> early-defboot.lisp
3746   ** code/misc.lisp       -> code/target-misc.lisp
3747   ** code/host-misc.lisp  -> code/misc.lisp
3748   ** code/numbers.lisp    -> code/target-numbers.lisp
3749   ** code/early-numbers.lisp -> numbers.lisp
3750   ** early-host-type.lisp -> early-type.lisp
3751   ** late-host-type.lisp  -> late-type.lisp
3752   ** host-typep.lisp      -> typep.lisp
3753   ** load.lisp            -> target-load.lisp
3754   ** host-load.lisp       -> load.lisp
3755   ** host-disassem.lisp   -> disassem.lisp
3756   ** host-insts.lisp      -> insts.lisp
3757   ** byte-comp.lisp       -> target-byte-comp.lisp
3758   ** host-byte-comp.lisp  -> byte-comp.lisp
3759   ** host-signal.lisp     -> signal.lisp
3760   ** host-defstruct.lisp  -> defstruct.lisp
3761   ** late-target-type.lisp -> deftypes-for-target.lisp
3762   Furthermore, several other previously target-only files foo.lisp (e.g.
3763   hash-table.lisp and random.lisp) have been split into a target-and-host
3764   foo.lisp file and a target-only target-foo.lisp file, with their key type
3765   definitions in the target-and-host part, so that the cross-compiler will
3766   know more about target types.
3767 * DEFSTRUCT BACKEND, and the BACKEND-valued *BACKEND* variable, have 
3768   gone away. In their place are various *BACKEND-FOO* variables
3769   corresponding to the slots of the old structure.
3770 * A bug which caused the SB-COLD bootstrap-time package to be propagated
3771   into the target SBCL has been fixed.
3772 * The chill.lisp system for loading cold code into a running SBCL
3773   now works better.
3774 * Support for the CMU CL "scavenger hook" extension has been removed.
3775   (It was undocumented and unused in the CMU CL sources that SBCL was
3776   derived from, and stale in sbcl-0.6.1.)
3777 * Various errors in the cross-compiler type system were detected
3778   by running the cross-compiler with *TYPE-SYSTEM-INITIALIZED*
3779   (enabling various consistency checks). Many of them were fixed,
3780   but some hard problems remain, so the compiler is back to 
3781   running without *TYPE-SYSTEM-INITIALIZED* for now.
3782 * As part of the cross-compiler type system cleanup, I implemented
3783   DEF!TYPE and got rid of early-ugly-duplicates.lisp.
3784 * I have started adding UNCROSS calls throughout the type system
3785   and the INFO database. (Thus perhaps eventually the blanket UNCROSS
3786   on cross-compiler input files will be able to go away, and various
3787   kludges with it).
3788 * CONSTANTP now returns true for quoted forms (as explicitly required
3789   by the ANSI spec).
3790
3791 changes in sbcl-0.6.1 relative to sbcl-0.6.0:
3792
3793 * changed build optimization from (SAFETY 1) to (SAFETY 3) as a short-term
3794   fix for various type-unsafety bugs, e.g. failures with (LENGTH 123) and
3795   (MAKE-LIST -1). In the longer term, it ought to become true
3796   that declarations are assertions even at SAFETY 1. For now, it's not
3797   quite true even at SAFETY 3, but it's at least more nearly true..
3798   (Note that this change seems to increases the size of the system by
3799   O(5%) and to decrease the speed of the compiler by 20% or more.)
3800 * changed ALIEN printing to be much more abbreviated, as a short-term fix
3801   for the problem of printing dozens of lines of distracting information
3802   about low-level system machinery as part of the top stack frame
3803   on entry to the debugger when an undefined function was called.
3804 * tweaked the debugger's use of WITH-STANDARD-IO-SYNTAX so that *PACKAGE*
3805   is not reset to COMMON-LISP-USER. 
3806 * Compilation of stuff related to dyncount.lisp has been made conditional
3807   on the :SB-DYNCOUNT target feature, so that the ordinary core system is
3808   smaller. The various dyncount-related symbols have been moved into
3809   a new "SB-DYNCOUNT" package.
3810 * tty-inspect.lisp has been renamed to inspect.lisp.
3811 * unix-glibc2.lisp has been renamed to unix.lisp, and the :GLIBC2
3812   feature has gone away. (When we eventually port to other flavors of 
3813   libc and/or Unix, we'll try to make the differences between flavors
3814   invisible at the user level.)
3815 * Various other *FEATURES* tags, and/or their associated conditionals,
3816   have been removed if obsolescent, or given better documentation, or
3817   sometimes given more-mnemonic names.
3818
3819 changes in sbcl-0.6.0 relative to sbcl-0.5.0:
3820
3821 * tidied up "make.sh" script
3822 * tidied up system directory structure
3823 * better "clean.sh" behavior
3824 * added doc/FOR-CMUCL-DEVELOPERS
3825 * many many small tweaks to output format, e.g. removing possibly-confusing
3826   trailing #\. character in DESCRIBE-INSTANCE
3827 * (EQUALP #\A 'A) no longer signals an error.
3828 * new hashing code, including EQUALP hashing
3829 * tidied up Lisp initialization and toplevel
3830 * initialization files (e.g. /etc/sbclrc and $HOME/.sbclrc)
3831 * command line argument processing
3832 * added POSIX-GETENV function to deal with Unix-ish environment variables
3833 * more-Unixy handling of *STANDARD-INPUT* and other Lisp streams, e.g.
3834   terminating SBCL on EOF
3835 * non-verbose GC by default
3836 * There is no more "sbcl" shell script; the sbcl file is now the C
3837   runtime executable (just like CMU CL).
3838 * removed some unused fops, e.g. FOP-UNIFORM-VECTOR, FOP-CHARACTER, and 
3839   FOP-POP-FOR-EFFECT
3840 * tweaked debug-info.lisp and debug-int.lisp to make the debugger store
3841   symbol and package information as Lisp native symbol and package objects
3842   instead of strings naming symbols and strings naming packages. This way,
3843   whenever packages are renamed (as in warm init), debug information is
3844   transformed along with everything else.
3845 * tweaked the optimization policy declarations which control the building
3846   of SBCL itself. Now, among other things, the system no longer saves
3847   source location debugging information. (This helps two problems at once
3848   by reducing SBCL size and by keeping SBCL from trying to look for its
3849   sources -- which may not exist -- when reporting errors.)
3850 * added src/cold/chill.lisp, to let SBCL read its own cold sources for
3851   debugging and testing purposes
3852 * cleaned up printing, making the printer call PRINT-OBJECT for
3853   instances, and using PRINT-UNREADABLE-OBJECT for most PRINT-OBJECT
3854   methods, giving nearly-ANSI behavior
3855 * converted almost all special variables to use *FOO* naming convention
3856 * deleted PARSE-TIME functionality, since it can be done portably
3857 * moved some files out of cold init into warm init
3858 * deleted DEFUN UNDEFINED-VALUE, replaced (UNDEFINED-VALUE) forms
3859   with (VALUES) forms
3860 * regularized formatting of source files
3861 * added an install.sh script
3862 * fixed ridiculous memory usage of cross-compiler by making
3863   compiler/alloc.lisp not try to do pooling unless it can hook
3864   itself into the GC of the cross-compilation host. Now the system
3865   builds nicely on my old laptop.
3866 * added :SB-ALLOC in target-features.lisp-expr
3867 * deleted mention of :ANSI-DOC from target-features.lisp-expr (since it
3868   was not implemented)
3869 * re-did condition handling and note reporting in the compiler. Notes
3870   are no longer handled by signalling conditions. Style warnings
3871   and warnings are handled more correctly and reported in such a way
3872   that it's easy to find one or the other in your output (so that you
3873   can e.g. figure out which of many problems caused COMPILE-FILE to 
3874   return FAILURE-P).
3875 * changed the severity of several compiler warnings from full WARNING
3876   to STYLE-WARNING in order to conform with the ANSI spec; also changed
3877   compiler note reporting so that it doesn't use the condition system
3878   at all (and hence affects neither FAILURE-P nor WARNINGS-P in the 
3879   COMPILE-FILE command)
3880 * made PROCLAIM and DECLAIM conform to ANSI. PROCLAIM is now an ordinary
3881   function. As a consequence, START-BLOCK and END-BLOCK declarations are
3882   no longer supported, since their implementation was deeply intertwingled
3883   with the magical, non-ANSI treatment that PROCLAIM received in CMU CL.
3884 * removed bogus "support" for compiler macros named (SETF FOO), and
3885   removed the compiler macro for SETF INFO (but only after making a fool
3886   of myself on the cmucl-imp mailing list by posting a bogus patch for
3887   DEFINE-COMPILER-MACRO..)
3888 * Compiled files containing forms which have side effects on the Lisp
3889   reader (such as DEFPACKAGE forms) are now handled more correctly.
3890   (Compiler queuing of top level lambdas has been suppressed by setting
3891   *TOP-LEVEL-LAMBDA-MAX* to 0. )
3892 * deleted various currently-unused source files, e.g. gengc.lisp. They
3893   may be added back at some point e.g. when porting to other architectures,
3894   but until they are it's distracting to distribute them and to try to
3895   maintain them.
3896 * deleted "UNCROSS couldn't recurse through.." style warnings, since 
3897   there were so many of them they're just distractions, and UNCROSS is
3898   known to be able to handle the current sources
3899 * moved PROFILE functionality into TRACE, so that it will be clear
3900   how the wrapping and unwrapping of functions when you profile them
3901   interacts with the wrapping and unwrapping of functions when you
3902   trace them. (Actually, the functionality isn't there yet, but at least
3903   the interface specification is there. Hopefully, the functionality will
3904   arrive with some future maintenance release.)
3905 * removed host-oops.lisp
3906 * changed signature of QUIT function to allow UNIX-CODE argument
3907 * fixed READ-SEQUENCE bug
3908 * tweaked verbose GC output so that it looks more like the progress
3909   output that ANSI specifies for functions like LOAD
3910 * set up the system on sourceforge.com, with home pages, mailing lists, etc.
3911 * added <http://sbcl.sourceforge.com> to the banner information printed by
3912   the sbcl executable