0.8.16.9:
[sbcl.git] / NEWS
1 changes in sbcl-0.8.17 relative to sbcl-0.8.16:
2   * minor incompatible change: BASE-CHAR no longer names a class;
3     however, CHARACTER continues to do so, as required by ANSI.
4   * bug fix: READ, READ-PRESERVING-WHITESPACE, READ-DELIMITED-LIST,
5     and READ-FROM-STRING all now return a primary value of NIL if
6     *READ-SUPPRESS* is true.  (reported by Bruno Haible for CMUCL)
7   * bug fix: Default value of EOF-ERROR-P in READ-FROM-STRING is true.
8     (reported by Bruno Haible for CMUCL)
9   * bug fix: ERROR now signals a TYPE-ERROR if the arguments to ERROR
10     do not designate a condition.  (reported by Bruno Haible for
11     CMUCL)
12   * bug fix: UNINTERN, USE-PACKAGE, IMPORT and EXPORT all signal an
13     SB-EXT:NAME-CONFLICT condition (subtype of PACKAGE-ERROR) in the
14     name conflict situations in CLHS 11.1.1.2.5, and provide a restart
15     permitting resolution in favour of any of the conflicting symbols.
16     (reported by Bruno Haible for CMUCL)
17   * fixed some bugs revealed by Paul Dietz' test suite:
18     ** RENAME-PACKAGE allows all package designators as new package
19        names.
20
21 changes in sbcl-0.8.16 relative to sbcl-0.8.15:
22   * enhancement: saving cores with foreign code loaded is now
23     supported on x86/NetBSD and sparc/Linux in addition to the previously
24     supported platforms.
25   * bug fix: on some platforms repeated installations caused multiple
26     copies of HTML documentation to be installed -- should not happen
27     any more. (reported by Stefan Scholl)
28   * bug fix: parsing self-recursive alien record types multiple times
29     no longer causes infinite recursion. (reported by Thomas F. Burdick,
30     original patch by Helmut Eller for CMUCL)
31   * bug fix: stack-exhaustion detection works now on NetBSD as well.
32     (thanks to Richard Kreuter)
33   * bug fix: defining classes whose accessors are methods on existing
34     generic functions in other (locked) packages no longer signals
35     bogus package lock violations. (reported by François-René Rideau)
36   * bug fix: special variables as DEFMETHOD parameters no longer have
37     associated bogus type declarations. (reported by David Wragg and
38     Bruno Haible)
39   * bug fix: read-write consistency on streams of element-type
40     (SIGNED-BYTE N) for N > 32.  (reported by Bruno Haible for CMUCL)
41   * bug fix: redefiniton of the only method of a generic function with
42     no DEFGENERIC no longer emits a full WARNING.  In addition,
43     redefinition of generic functions with no DEFGENERIC to an
44     incompatible lambda list now signals an error.  (thanks to Zach
45     Beane)
46   * bug fix: DEFGENERIC now works even when there's a function of the
47     same name in an enclosing lexical environment.  (thanks to Zach
48     Beane)
49   * fixed compiler failure, caused by instrumenting code during
50     IR1-optimization.  (Debian bug report #273606 by Gabor Melis)
51   * optimization: added loop analysis and improved register allocation
52   * fixed some bugs revealed by Paul Dietz' test suite:
53     ** POSITION on displaced vectors with non-zero displacement
54        returns the right answer.
55     ** (SIMPLE-STRING) is a valid type specifier for sequence
56        creators.
57     ** *PRINT-LEVEL* handling for slotless structures is pedantically
58        correct.
59     ** PPRINT-INDENT accepts a request for an indentation of any REAL.
60     ** PPRINT-TAB (and the FORMAT ~T directive) now indent by the
61        correct amounts.
62     ** The justification version of the FORMAT ~< directive treats
63        non-zero minpad parameter correctly.
64
65 changes in sbcl-0.8.15 relative to sbcl-0.8.14:
66   * incompatible change: SB-INT:*BEFORE-SAVE-INITIALIZATIONS* and
67     SB-INT:*AFTER-SAVE-INITIALIZATIONS* have been renamed
68     SB-EXT:*SAVE-HOOKS* and SB-EXT:*INIT-HOOKS*, and are now part of
69     the supported interface.
70   * new feature: Single-stepping of code compiled with DEBUG 2 or
71     higher and (> DEBUG (MAX SPACE SPEED)) is now possible.
72   * new feature: saving cores with foreign code loaded is now
73     supported on x86/FreeBSD, x86/Linux, and sparc/SunOS. (based on
74     Timothy Moore's work for CMUCL)
75   * bug fix: DEFTYPE lambda-list parsing now binds unsupplied keyword
76     parameters to * instead of NIL if no initform is supplied.
77     (reported by Johan Bockgaard)
78   * bug fix: DEFINE-COMPILER-MACRO lambda-list parsing now binds
79     correctly when FUNCALL appears as the car of the form. Note:
80     despite this FUNCALL forms are not currently subject to
81     compiler-macro expansion. (port of Raymond Toy's fix for the
82     same from CMUCL, reported by Johan Bockgaard)
83   * bug fix: FOR ... ON ... -clauses in LOOP now work on dotted lists
84     (thanks for Teemu Kalvas)
85   * bug fix: in FORMAT ~^ inside ~:{ now correctly steps to the next
86     case instead of terminating the iteration (thanks for Julian
87     Squires, Sean Champ and Raymond Toy)
88   * bug fix: incorrect expansion of defgeneric that caused a style
89     warning. (thanks for Zach Beane)
90   * bug fix: slot accessor effective method computation works properly
91     for classes with multiple non-standard applicable methods on
92     SB-MOP:SLOT-VALUE-USING-CLASS.  (reported by Ralf Mattes)
93   * on x86 compiler supports stack allocation of results of LIST and
94     LIST*, bound to variables, declared DYNAMIC-EXTENT. (based on
95     CMUCL implementation by Gerd Moellmann)
96   * fixed some bugs revealed by Paul Dietz' test suite:
97     ** FORMAT strings with both the ~<~:;~> form of the justification
98        directive and pretty-printing directives cause an error.
99
100 changes in sbcl-0.8.14 relative to sbcl-0.8.13:
101   * incompatible change: the internal functions
102     SB-KERNEL:32BIT-LOGICAL-FOO, intended for providing efficient
103     logical operations on (UNSIGNED-BYTE 32) values, have been renamed
104     to SB-KERNEL:WORD-LOGICAL-FOO.  Modular arithmetic should be used
105     instead of the old functions.
106   * new feature: on platforms where "dladdr" is available foreign
107     function names now appear in backtraces.  (based on Helmut Eller's
108     work for CMUCL)
109   * documentation: documentation for SB-BSD-SOCKETS, SB-GRAY, 
110     SB-SIMPLE-STREAMS, and SB-PROFILE have been integrated into the user 
111     manual. 
112   * documentation: ASDF manual is now distributed with SBCL.
113   * bug fix: SBCL can now load its contributed modules with REQUIRE
114     even if the system-provided entries have been removed from
115     ASDF:*CENTRAL-REGISTRY*. Infinite recursion in REQUIRE is also
116     detected.
117   * bug fix: backtraces involving undefined functions or assembly
118     routines are more informative.  (thanks to Brian Downing)
119   * bug fix: mutually referent alien structures now work correctly.
120     (reported by Rick Taube)
121   * bug fix: structures defined by WITH-ALIEN can be referred to
122     within other definitions in the same WITH-ALIEN.
123   * bug fix: division operators (MOD, TRUNCATE and the like) with
124     constant zero divisors and integer dividends no longer generate
125     left shifts.
126   * bug fix: provide default methods for INPUT-STREAM-P and
127     OUTPUT-STREAM-P specialized on SB-GRAY:FUNDAMENTAL-STREAM.
128   * bug fix: improve the detection and resolution of MOP metacycles
129     (where effective method computation depends on the generic function
130     having its effective method computed).  (reported by Bruno Haible)
131   * bug fix: pass the right initargs to :BEFORE or :AFTER methods on
132     SHARED-INITIALIZE or INITIALIZE-INSTANCE in optimized
133     MAKE-INSTANCE constructors.  (reported by Axel Schairer for cmucl)
134   * bug fix: pathnames with relative directory components can be
135     represented relative to default pathnames.
136   * optimization: in taking the GCD of bignums, reduce the two bignums
137     to approximately the same size (using Euclid's algorithm) before
138     applying the more sophisticated binary GCD.  (thanks to Juho
139     Snellman)
140   * optimization: COUNT on bitvectors now operates word-at-a-time.
141   * optimization: ASH with a positive, but not necessarily constant,
142     (leftwards) shift, when in a modular context, is compiled to a
143     hardware shift.
144   * fixed some bugs revealed by Paul Dietz' test suite:
145     ** FORMAT variable parameters ("~V<char>") are defaulted properly
146        if the corresponding argument is NIL.
147     ** FORMAT directives accepting a minpad parameter treat negative
148        values as 0.
149     ** literal commas as character parameters to FORMAT directives are
150        parsed correctly.
151     ** literal spaces directly after ~<Newline> directives within a
152        format-logical-block (~:< ~@:>) do not induce :FILL-style
153        conditional newlines.
154     ** PRINT-UNREADABLE-OBJECT inserts spaces as specified (and only
155        as specified: it no longer includes conditional newlines).
156     ** PRINC-TO-STRING binds *PRINT-READABLY* to NIL (as well as
157        *PRINT-ESCAPE*).
158     ** PPRINT-LOGICAL-BLOCK signals a TYPE-ERROR if its :PREFIX or
159        :PER-LINE-PREFIX argument does not evaluate to a string.
160
161 changes in sbcl-0.8.13 relative to sbcl-0.8.12:
162   * new feature: SB-PACKAGE-LOCKS. See the "Package Locks" section of
163     the manual for details; for now, package locks can be disabled by
164     removing :SB-PACKAGE-LOCKS in customize-target-features.lisp, but
165     if no major problems are found then it is likely that they will be
166     compiled in unconditionally.
167   * major incompatible change: LOAD-FOREIGN and LOAD-1-FOREIGN are now
168     unsupported operators on all platforms.  To load a shared library
169     into SBCL, use SB-ALIEN:LOAD-SHARED-OBJECT.  To load a non-shared
170     object file, link it into a shared library outside of SBCL and
171     load it using SB-ALIEN:LOAD-SHARED-OBJECT.  (incidentally fixes
172     bug #79)
173   * bug workaround: ROOM T and the GC were not working together
174     reliably, because invariants expected by the SB!VM:INSTANCE-USAGE
175     reporting facility aren't preserved. That reporting has been
176     disabled, so now until and unless someone figures out how to make it
177     work reliably with the current GC, (ROOM T) is equivalent to (ROOM).
178   * minor incompatible change: as threatened around sbcl-0.8.0, the
179     home package of MOP-related symbols is now SB-MOP, not SB-PCL.
180     The symbols are also exported from SB-PCL for backwards
181     compatibility, but more so than before SB-PCL should be treated as
182     an implementation-internal package.
183   * fasl format changed: SBCL 0.8.13 fasls are incompatible with those
184     of earlier versions
185   * the SB-SPROF contrib now works on (most) non-x86 architectures.
186     It is known as of this release not to work on the Alpha, however.
187   * fixed bug #167: errors signalled due to illegal syntax in method 
188     bodies are now more legible.
189   * fixed bug #338: instances of EQL-SPECIFIER are now valid type
190     designators and can hence be used with TYPEP.
191   * fixed bug #333: CHECK-TYPE now ensures that the type error
192     signalled, if any, has the right object to be accessed by
193     TYPE-ERROR-DATUM.  (reported by Tony Martinez)
194   * fixed bug #340: SETF of VALUES obeys the specification in ANSI
195     5.1.2.3 for multiple-value place subforms.  (reported by Kalle
196     Olavi Niemetalo)
197   * fixed bug #334: programmatic addition of slots using specialized
198     methods on SB-MOP:COMPUTE-SLOTS works for :ALLOCATION :INSTANCE
199     and :ALLOCATION :CLASS slots.
200   * fixed bug #269: SCALE-FLOAT scales floats by any integer, not just
201     float exponents.  (rereported by Peter Seibel)
202   * fixed a bug: #\Space (and other whitespace characters) are no
203     longer considered to be macro characters in standard syntax by
204     GET-MACRO-CHARACTER.
205   * fixed bug: initialization of condition class metaobjects no longer
206     causes an instance of the condition to be created.  (reported by
207     Marco Baringer)
208   * fixed bug: it is now possible to have slots such that
209     SB-MOP:SLOT-DEFINITION-ALLOCATION of the effective slot
210     description is neither :INSTANCE nor :CLASS.
211   * fixed bug: the ctor optimization of MAKE-INSTANCE now respects
212     user-defined methods on SLOT-BOUNDP-USING-CLASS and (SETF
213     SLOT-VALUE-USING-CLASS), and no longer causes errors with
214     non-standard SLOT-DEFINITION-ALLOCATION values.
215   * fixed bugs: various race conditions handling exiting threads.  
216     CL-PPCRE's thread torture test now passes.
217   * fixed arguably-a-bug: GC time proportional to number of threads in 
218     system even when most of them are idle
219   * optimization: improved performance of BIT and SBIT on bit-vectors.
220   * .fasl file incompatibility: The fasl file version number has
221     been incremented because of changes associated with package locks.
222
223 changes in sbcl-0.8.12 relative to sbcl-0.8.11:
224   * minor incompatible change: the system no longer provides
225     optimization hints (conditions which are TYPEP
226     SB-EXT:COMPILER-NOTE) for conforming code in default compilation
227     mode; these hints are still emitted when higher SPEED optimization
228     is requested.
229   * new contrib module: a sampling profiler (profiling by statistical
230     sampling, rather than by instrumenting functions) is available as
231     the SB-SPROF contrib.  (thanks to Gerd Moellmann and Juho Snellman)
232   * the behaviour of the standard function ED is now customizeable by
233     third parties through a hook variable: see ED's documentation
234     string for information on the protocol.
235   * the compiler no longer emits efficiency notes for (FUNCALL X)
236     when the type of X is uncertain under default optimization
237     settings.
238   * fixed bug 276: mutating a binding of a specialized parameter to a
239     method to something that is not TYPEP the specializer is now
240     possible.
241   * fixed bugs 45d and 118: DOUBLE-FLOAT[-NEGATIVE]-EPSILON now
242     exhibit the required behaviour on the x86 platform.  (thanks to
243     Peter van Eynde, Eric Marsden and Bruno Haible)
244   * fixed bug 335: ATANH now computes the inverse hyperbolic tangent
245     even for difficult arguments.  (reported by Peter Graves)
246   * fixed bug 141a: the backquote printer now descends quoted
247     structure.
248   * fixed another bug in backquote printing: no more destructive
249     modification of the form's list structure.  (reported by Brian
250     Downing)
251   * fixed bug in INTERRUPT-THREAD: pin the function, so that it cannot
252     move between its address being taken and the call to
253     interrupt_thread, fixing a crashing race condition.
254   * the SB-POSIX contrib implementation has been adjusted so that it
255     no longer exhibits ridiculously poor performance when constructing
256     instances corresponding to C structs.
257
258 changes in sbcl-0.8.11 relative to sbcl-0.8.10:
259   * minor incompatible change: the sb-grovel contrib now treats C
260     structures as alien (in the sense of SB-ALIEN) objects rather than
261     as undistinguished (simple-array (unsigned-byte 8) (*))s.  This
262     has implications for memory management of client code
263     (sb-grovel-returned objects must now be manually managed) and for
264     type safety (alien objects now have full types).
265   * new feature: the SB-EXT:MUFFLE-CONDITIONS declaration should be
266     used to control emission of compiler diagnostics, rather than the
267     SB-EXT:INHIBIT-WARNINGS OPTIMIZE quality.  See the manual for
268     documentation on this feature.  The SB-EXT:INHIBIT-WARNINGS
269     quality should be considered deprecated.
270   * install.sh now installs the user manual as well
271   * (not quite a new documentable feature, but worth considering in
272     the light of the new SB-EXT:MUFFLE-CONDITIONS declaration): the
273     beginnings of a semantically meaningful condition hierarchy is
274     under development, for use in SB-EXT:MUFFLE-CONDITIONS and by
275     IDEs.
276   * fixed bug: PARSE-NAMESTRING now accepts any valid pathaname
277     designator as the defaults argument.
278   * fixed bug: Displaced arrays whose displaced-to array has become
279     too small now cause ARRAY-DIMENSION to signal an error, providing
280     for safer bounds-checking. (reported by Bruno Haible)
281   * fixed bug: DEFCLASS slot definitions with identical :READER and
282     :WRITER names now signal a reasonable error. (reported by Thomas
283     Burdick)
284   * fixed bug: CLOSE :ABORT T on appending stream no longer causes
285     file deletion.
286   * fixed bug: Invalid slot specification errors now print correctly. 
287     (thanks to Zach Beane)
288   * fixed bug 320: Shared to local slot value transfers in class 
289     redefinitions now happen corrently from superclasses as
290     well. (reported by Bruno Haible)
291   * fixed bug 316: SHIFTF now accepts VALUES forms. (reported by Bruno
292     Haible)
293   * fixed bug 322: DEFSTRUCT :TYPE LIST type predicates now handle
294     improper lists correctly. (reported by Bruno Haible)
295   * fixed bug 313: source-transform for <fun-name> was erroneously
296     applied to a call of a value of a variable with name <fun-name>.
297     (reported by Antonio Menezes Leitao)
298   * fixed bug 307: The obsolete instance protocol ensures that
299     subclasses are properly obsoleted.  (thanks to Nikodemus Siivola)
300   * fixed bug 298, revealed by Paul F. Dietz' test suite: SBCL can
301     remove dead unknown-values globs from the middle of the stack.
302   * added a new restart to *BREAK-ON-SIGNALS* handling to make it
303     easier to resume long computations after using *BREAK-ON-SIGNALS*
304     to diagnose and fix failures.  (thanks to Nikodemus Siivola)
305   * fixed bug reported by PFD in lisppaste #747 (and Bruno Haible from
306     CLISP test suite): WRITE-TO-STRING is not constant-foldable.
307   * fixed bugs in COMPLEX type specifier: UPGRADED-COMPLEX-PART-TYPE
308     is now consistent with (COMPLEX <x>); bugs in treatment of COMPLEX
309     MEMBER and UNION types have likewise been fixed.  (thanks to Bruno
310     Haible)
311   * fixed a (fairly theoretical) bug in string printing: if
312     *PRINT-READABLY* is true, signal PRINT-NOT-READABLE if the string
313     does not have array-element-type equal to the most general string
314     type.
315   * fixed bug: SET-PPRINT-DISPATCH does not immediately resolve
316     function name. (thanks to Nikodemus Siivola)
317   * fixed bug: compile-time format string checker failed on
318     non-closed ~{.  (reported by Thomas F Burdick)
319   * fixed bug: as reported by Kalle Olavi Niemitalo on #lisp IRC,
320     don't warn on legal loop code involving more than one aggregate
321     boolean.  (thanks to Nikodemus Siivola)
322   * fixed bug: as reported by Peter Graves on #lisp IRC, passing a NIL
323     in keyword position to MAKE-PACKAGE was not being reported as
324     invalid.
325   * fixed bug: as reported by Juan Ripoll on cmucl-imp,
326     MULTIPLE-VALUE-BIND should be able to lexically bind lambda list
327     keywords.
328   * fixed bugs 280 and 312: the checking for multiple definitions in a
329     file is less likely to become confused by uses of inline
330     functions.
331   * fixed bug: the #S reader macro performs the keyword coercion
332     specified for slot names.  (reported by Kalle Niemitalo)
333   * fixed bug: lambda lists may contain symbols whose names start with
334     & but are not lambda-list-keywords; their occurrence triggers a
335     STYLE-WARNING.
336   * fixed bug 321: define-method-combination argument lambda lists do
337     not cause invalid code to be generated when &optional or &aux
338     variables have default values.  (reported by Bruno Haible)
339   * fixed bug 327: system subclasses of STRUCTURE-OBJECT or CONDITION
340     have CLOS classes; this appears also to have fixed reported
341     instability in stack exhaustion detection.
342   * fixed bug: the CONTROL-ERROR from ABORT, CONTINUE and
343     MUFFLE-WARNING when no associated restart is present is now
344     printable.
345   * optimization: rearranged the expansion of various defining macros
346     so that each expands into only one top-level form in a
347     :LOAD-TOPLEVEL context; this appears to decrease fasl sizes by
348     approximately 10%.
349   * optimization: used a previously little-used slot in symbols to
350     cache SXHASH values, yielding a 5-10% compiler speedup.  (thanks
351     to Juho Snellman)
352   * fixed some bugs revealed by Paul Dietz' test suite:
353     ** MAKE-INSTANCES-OBSOLETE returns the class name when called with 
354        a symbol.
355     ** Fixed an optimization bug related to inheritance of initforms
356        from local to shared slots.
357     ** FILE-POSITION works as specified on BROADCAST-STREAMs.
358     ** CAST optimizer forgot to flush argument derived type.
359     ** print/read consistency on floats is now orders of magnitude
360        more likely.  (thanks also to Bruno Haible for a similar report
361        and discussions)
362     ** removed stack cleaning in the cleanup part of UNWIND-PROTECT.
363     ** IMAGPART is specified (infelicitously) to return (* 0 <thing>)
364        for objects of type REAL.  Make it so.
365     ** SXHASH is specified (infelicitously) to respect similarity,
366        which means that (SXHASH 0.0) must equal (SXHASH -0.0).  Make
367        it so.  (thanks to Markus Ziegler)
368     ** on the Alpha, the compiler succeeds in compiling functions
369        returning a known number of arguments greater than 63.
370     ** fixed handling of invalid NIL arguments in keyword position
371        in local calls.
372     ** fixed non-pretty printing of arrays with *PRINT-RADIX* being
373        true.
374     ** provided a readably-printable representation for RANDOM-STATE
375        objects.
376     ** ensured that pathnames, where they have a namestring, always
377        print using #P"..." syntax.
378
379 changes in sbcl-0.8.10 relative to sbcl-0.8.9:
380   * Support for the forthcoming 2.0 version of the NetBSD kernel
381     running on x86 hardware has been added.  (thanks to Perry
382     E. Metzger most immediately, and others for their past work)
383   * SBCL now runs on OpenBSD 3.4. (Thanks to Scott Parish; 3.4 is the
384     current release version; SBCL's OpenBSD support had been broken 
385     since about the time of OpenBSD's switch to ELF binary format.)
386   * [placeholder for DX summary]
387     ** user code with &REST lists declared dynamic-extent, under high
388        speed or space and low safety and debug optimization policy.
389   * The manual has been converted to Texinfo format and the debugger
390     chapter from the cmucl manual has been added.
391   * A facility has been added to extract documentation strings from
392     sbcl and store them as Texinfo-formatted snippets for inclusion in
393     the manual (via Texinfo's @include directive)
394   * bug fix: compiler emitted division in optimized DEREF.  (thanks for
395     the test case to Dave Roberts)
396   * bug fix: multidimensional simple arrays loaded from FASLs had fill
397     pointers.  (reported by Sean Ross)
398   * bug fix: PROFILE output is printed nicely even for large numerical
399     values.  (thanks to Zach Beane)
400   * bug fix: streams with element-type (SIGNED-BYTE <N>) for <N>
401     greater than 32 handle EOF correctly.
402   * bug fix: on X86 an immediate argument of the IMUL instruction is
403     correctly printed in disassembly. (thanks to Lutz Euler)
404   * bug fix: class slots in redefined classes preserve their old
405     values.  (thanks to Bruno Haible and Nikodemus Siivola)
406   * bug fix: compilation of funcalls of CXX+R (e.g. CDDR) now
407     succeeds.  (reported by Marco Baringer)
408   * fixed some bugs revealed by Paul Dietz' test suite:
409     ** READ-SEQUENCE now works on ECHO-STREAMs.
410     ** RATIONALIZE works more according to its specification.  (thanks
411        to Bruno Haible)
412
413 changes in sbcl-0.8.9 relative to sbcl-0.8.8:
414   * deprecation of old extension: *DEBUG-PRINT-LEVEL* and
415     *DEBUG-PRINT-LENGTH* are now deprecated in favor of the new, more
416     general SB-DEBUG:*DEBUG-PRINT-VARIABLE-ALIST* mechanism. (This
417     should matter to you only if you rebind the printer control
418     variables and then find you want different bindings in the 
419     debugger than in the ordinary execution of your program.)
420   * The runtime build system has been tweaked to support building
421     (on SPARC/SunOS) using a C compiler which invokes Sun's own
422     assembler and linker.  (thanks to Nikodemus Siivola)
423   * Unbound, undefined, undeclared variables now trigger full
424     WARNINGs, not just STYLE-WARNINGs, on the assumption that this is
425     more often programmer error than deliberate exploitation of undefined
426     behaviour.
427   * optimization: the hash algorithm for strings has changed to one
428     that is less vulnerable to spurious collisions.  (thanks to Juho
429     Snellman)
430   * optimization: VECTOR-POP, VECTOR-PUSH-EXTEND and REPLACE do less
431     needless bounds checking.  (thanks to Juho Snellman)
432   * optimization: implemented multiplication as a modular
433     (UNSIGNED-BYTE 32) operation on the PPC backend.
434   * fixed some bugs revealed by Paul Dietz' test suite:
435     ** ADJUST-ARRAY now copies the datum in a zero rank array if
436        required.
437     ** ADJUST-ARRAY no longer adjusts non-adjustable arrays.
438     ** MAKE-STRING-INPUT-STREAM accepts NIL as a value for :END.
439     ** MAKE-STRING-INPUT-STREAM functions correctly for strings with
440        element-type NIL.
441     ** CLEAR-INPUT accepts NIL and T for its (optional) stream
442        argument.
443     ** Ratios can now be printed correctly with *PRINT-BASE* bound to
444        2, 8 or 16.
445     ** ECHO-STREAMs no longer attempt to echo the end of file value to
446        their output stream on EOF from read.
447     ** CONCATENATED-STREAM-STREAMS discards constituent streams which
448        have been read to end-of-file.
449     ** CLOSE works as expected on the null CONCATENATED-STREAM, and on
450        STRING-STREAMS.
451     ** Printing symbols with *PRINT-CASE* :CAPITALIZE respects the
452        description of determination of which consecutive characters
453        constitute a word.
454     ** Printing the "Space" character with escaping on now yields "#\\ ", 
455        rather than "#\\Space", as mandated by ANSI 22.1.3.2.
456     ** Reading floating-point numbers with *READ-BASE* set to a number
457        less than 10 works correctly.
458     ** Reading floating-point numbers with *READ-BASE* set to a number
459        more than 10 works correctly.
460     ** Printing with *PRINT-READABLY* targets the standard readtable, not
461        the readtable currently in effect.
462
463 changes in sbcl-0.8.8 relative to sbcl-0.8.7:
464   * minor incompatible change: parsing of namestrings on a physical
465     (Unix) host has changed; numbers after the final #\. in a
466     namestring are no longer interpreted as a version field.  This is
467     intented to be largely invisible to the user, except that the
468     meaning of the namestring "*.*.*" has changed: it now refers to a
469     pathname with :TYPE :WILD :NAME #<pattern "*.*">.  This namestring
470     should usually be replaced by 
471       (make-pathname :name :wild :type :wild :version :wild)
472     with the added benefit that this is more likely to be portable.
473     As a consequence of this change, the :IF-EXISTS :NEW-VERSION
474     option to OPEN now signals an error if the file being opened
475     exists; this may have an impact on existing code.
476   * fixed bug 190: RUN-PROGRAM should now work properly, respecting
477     signals received, on the PowerPC platforms (both Linux and
478     Darwin).  (thanks to Pierre Mai for pointing out the location of
479     the error)
480   * several fixes on OS X: The system now builds and runs cleanly on
481     Panther (10.3), and works around sigreturn bug (no more SIGFPEs).
482     (thanks to Brian Mastenbrook)
483   * bug fix: DECODE-UNIVERSAL-TIME now accepts timezone arguments with
484     second-resolution: integer multiples of 1/3600 between -24 and 24.
485     (thanks to Vincent Arkesteijn)
486   * bug fix: functions =, /=, <, <=, >, >= did not check the argument
487     type when called with 1 argument; PEEK-CHAR checked type of
488     PEEK-TYPE only after having read first character from a
489     stream.  (reported by Peter Graves)
490   * bug fix: the garbage collector now has much better locality
491     behaviour, and in particular no longer treats all memory as being
492     exhausted when many small objects point to each other in a deeply
493     recursive manner.
494   * bug fix: arrays specialized on (UNSIGNED-BYTE 15) are now
495     recognized as being TYPEP their class.
496   * bug fix: the PUSHNEW documentation string has been corrected.
497     (thanks to Vincent Arkesteijn)
498   * bug fix: defaulting of the value for the last of an atypically
499     large number of multiple values being bound was not being
500     performed correctly on the Alpha or PPC platforms
501   * optimization: implemented multiplication as a modular
502     (UNSIGNED-BYTE 32) operation on the x86 backend.
503   * optimization: SEARCH on simple-base-strings can now be open-coded.
504     (see also contrib/compiler-extras.lisp for inspiration for
505     teaching the compiler about the Boyer-Moore algorithm).
506   * value, returned by MAX (and MIN) called with several EQUALP, but
507     not EQL, arguments now does not depend on compiler settings.
508   * fixed some bugs revealed by Paul Dietz' test suite:
509     ** in stack analysis liveness information is propagated from
510        non-local entry points.
511     ** pathwise CAST removing failed when the CAST node did not start
512        a block.
513     ** INPUT-STREAM-P, OUTPUT-STREAM-P, STREAM-ELEMENT-TYPE and
514        OPEN-STREAM-P signal a TYPE-ERROR if their argument is not a
515        stream.
516     ** LOAD-LOGICAL-PATHNAME-TRANSLATIONS returns NIL if the logical
517        host is already defined.
518     ** RENAME-FILE works on streams instead of signalling an internal
519        type error.
520     ** PEEK-CHAR uses the current readtable when determining whether
521        or not a character is whitespace.
522     ** MERGE-PATHNAMES handles the case when the pathname does not
523        specify a name while the default-pathname specifies a version.
524     ** Pathnames now stand a better chance of respecting print/read
525        consistency.
526     ** Attempting to use standardized file system operators with a
527        pathname with invalid :DIRECTORY components signals a
528        FILE-ERROR.
529     ** OPEN :DIRECTION :IO no longer fails to work on non-existent
530        files.
531     ** DIRECTORY on logical pathnames is more correct.
532     ** CLEAR-INPUT, CLEAR-OUTPUT, FINISH-OUTPUT and FORCE-OUTPUT
533        signal a TYPE-ERROR if their argument is not a stream.
534     ** READ-BYTE and WRITE-BYTE signal a TYPE-ERROR if their stream
535        designator argument does not designate a stream.
536     ** OPEN-STREAM-P and INPUT-STREAM-P on synonym streams work by
537        examining the synonym.
538     ** STREAM-ELEMENT-TYPE and FRESH-LINE on broadcast-streams now
539        work as specified.
540     ** OPEN and WITH-OPEN-STREAM allow opening streams with
541        element-type larger than ([UN]SIGNED-BYTE 32).
542
543 changes in sbcl-0.8.7 relative to sbcl-0.8.6:
544   * When built with the :SB-FUTEX feature, threaded builds now take 
545     advantage of the "fast userspace mutex" facility in Linux kernel 2.6
546     for faster/more reliable mutex and condition variable support.
547   * Incompatible change (but one you probably shouldn't have been using
548     anyway): the interface and code for arbitrating between multiple
549     threads in the same user session has been redesigned.
550   * bug fix: GET-SETF-EXPANSION no longer throws an internal type
551     error when called without an explicit environment argument.
552     (thanks to Nikodemus Siivola)
553   * bug fix: buffered :DIRECTION :IO streams are less likely to become
554     confused about their position.  (thanks to Adam Warner and Gerd 
555     Moellmann)
556   * bug fix: Pretty printing backquoted forms with unquotations in the
557     argument list position of various code constructs such as LAMBDA
558     now works correctly.  (reported by Paul Dietz)
559   * bug fix: Pretty printing unquotations no longer loses all
560     stream position information.
561   * optimization: performance of string output streams is now less
562     poor for multiple small sequence writes.
563   * optimization: performance of CSUBTYPEP in the presence of complex
564     expressions involving CONS and NOT many times has been improved.
565     (reported by Paul Dietz)
566   * ASDF-INSTALL bug fix: now parses *PROXY* properly.  (thanks to
567     Sean Ross)
568   * SB-SIMPLE-STREAMS enhancement: simple-streams can now be used as
569     streams for the REPL, for the debugger, and so on.  (thanks to
570     David Licteblau)
571   * DEFINE-CODITION is more efficient.  (thanks to Brian Mastenbrook)
572   * fixed some bugs revealed by Paul Dietz' test suite:
573     ** the value of the :REHASH-THRESHOLD argument to MAKE-HASH-TABLE
574        is ignored if it is too small, rather than propagating through
575        to cause DIVIDE-BY-ZERO or FLOATING-POINT-OVERFLOW errors.
576     ** extremely complex negations of CONS types were not being
577        sufficiently canonicalized, leading to inconsistencies in
578        SUBTYPEP.
579     ** VALUES tranformer lost derived type.
580
581 changes in sbcl-0.8.6 relative to sbcl-0.8.5:
582   * fixed a bootstrapping bug: the build process no longer assumes
583     that the various BOOLE-related constants have the same value in
584     host and target lisps.  (noted by Paul Dietz' test suite on an
585     SBCL binary built from CLISP)
586   * The system can now be dynamically linked on the MIPS platform,
587     which enables dynamic loading of foreign code from Lisp.  (thanks
588     to Ralf Baechle for discussions on the MIPS ABI)
589   * The system now records debugging information for its own source
590     files in a filesystem-position-independent manner, relative to 
591     the "SYS" logical host.
592   * fixed a compiler bug: MV-LET convertion did not check references
593     to the "max args" entry point.  (reported by Brian Downing)
594   * tweaked disassembly notes to be less confident about proclaiming
595     some instruction as an LRA.  (thanks to Brian Downing)
596   * contrib update: SB-ACLREPL is now threadsafe; multiple listeners
597     now each have their own history, command character, and other
598     characteristics.  (thanks to David Lichteblau)
599   * fixed some bugs revealed by Paul Dietz' test suite:
600     ** compiler failure in compiling LOGAND expressions including a
601        constant 0
602     ** Implementation of ASH-MOD32 on X86 and PPC did not work for the
603        shift greater than 32.
604     ** FLUSH-DEST did not mark blocks for type check regeneration.
605     ** HANDLER-CASE failed to accept declarations in handler clauses
606        in some circumstances.
607
608 changes in sbcl-0.8.5 relative to sbcl-0.8.4:
609   * New code in contrib/sb-introspect (still probably not entirely
610     stable yet) provides some support for smart Lisp development 
611     environments like SLIME.
612   * The conditions signalled for errors occurring when loading .fasl
613     files have been systematized (inheriting from SB-EXT:INVALID-FASL)
614     in a way which should help ASDF recover gracefully.
615   * The REQUIRE/PROVIDE behavior of *MODULE-PROVIDER-FUNCTIONS* 
616     stuff has been cleaned up. If you code contrib/ stuff, this might 
617     affect you, and you can look at contrib/README, contrib/STANDARDS, 
618     and/or the 0.8.4.27 diff to check.
619   * In full calls the compiler now does not generate checks for declared
620     argument types for all arguments.
621   * various threading fixes
622     ** and some experimental patches which didn't make it into 
623        the main tree for this release, but which are shipped in 
624        contrib/experimental-thread.patch as a possible fix for some
625        failures (deadlock, spinning...) in GC-intensive multithreaded
626        applications.
627   * fixed PPC build problem (source code incompatibility of different 
628     library versions): added offsetof() hackery which attempts to divine 
629     where glibc maintainers put uc_mcontext today 
630   * fixed bug 282: compiler does not trust type assertions while passing
631     arguments to a full call.
632   * fixed bug 261: compiler allows NIL or "no value" to be accepted for
633     &OPTIONAL VALUES type parameter.
634   * fix bug 214: algorithm for noting rejected templates is now more
635     similar to that of template seletion. (also reported by rydis on
636     #lisp)
637   * fixed bug 141b: printing backquoted information readably and prettily
638     inserts a space where necessary.
639   * bug fix: obviously wrong type specifiers such as (FIXNUM 1) or
640     (CHARACTER 10) are now reported as errors, rather than propagated
641     as unknown types.  (reported by piso on #lisp)
642   * bug fix: the :IF-EXISTS argument to OPEN now behaves correctly
643     with values NIL and :ERROR.  (thanks to Milan Zamazal)
644   * fixed bug 191c: CLOS now does proper keyword argument checking as
645     described in CLHS 7.6.5 and 7.6.5.1.
646   * bug fix: LOOP forms using NIL as a for-as-arithmetic counter no
647     longer raise an error; further, using a list as a for-as-arithmetic
648     counter now raises a meaningful error.
649   * fixed bug 213a: even fairly unreasonable CONS type specifiers are
650     now understood by sequence creation functions such as MAKE-SEQUENCE
651     and COERCE.
652   * fixed bug 46k: READ-BYTE now signals an error when asked to read from
653     a STRING-INPUT-STREAM.
654   * compiler enhancement: SIGNUM is now better able to derive the type
655     of its result.
656   * type declarations inside WITH-SLOTS are checked.  (reported by
657     salex on #lisp)
658   * fixed some bugs revealed by Paul Dietz' test suite:
659     ** incorrect optimization of TRUNCATE for a positive first
660        argument and negative second.
661     ** compiler failure in let-convertion during flushing dead code.
662     ** compiler failure while deriving type of TRUNCATE on an
663        interval, containing 0.
664     ** ASH of a negative bignum by a negative bignum count now returns
665        -1, not 0.
666     ** intersection of CONS types now canonicalizes properly, fixing
667        inconsistencies in SUBTYPEP.
668
669 changes in sbcl-0.8.4 relative to sbcl-0.8.3:
670   * incompatible change: The --disable-debugger command line
671     option now clobbers the debugger at a more fundamental
672     level, by redefining #'INVOKE-DEBUGGER instead of by 
673     rebinding *DEBUGGER-HOOK*. The main difference is that BREAK
674     is specified by ANSI to ignore *DEBUGGER-HOOK* and
675     INVOKE-DEBUGGER regardless. Under the old system, BREAK would
676     enter the debugger REPL and then suffer recursive errors
677     because *DEBUG-IO* is also messed up in --disable-debugger mode;
678     while under the new system, BREAK in --disable-debugger mode
679     terminates the system just as an unhandled error would.
680   * fixed compiler performance when processing loops with a step >1;
681   * bug fix: DOCUMENTATION now retrieves generic function
682     documentation.  Also, DOCUMENTATION and (SETF DOCUMENTATION)
683     support has been systematized, and now supports the methods
684     specified by ANSI, along with a default method and a method for
685     slot documentation.  (reported by Nathan Froyd)
686   * bug fix: effective methods associated with a generic function are
687     no longer cached over a change of that generic function's method
688     combination.  (reported by Andreas Fuchs)
689   * bug fix: RUN-PROGRAM now does not fail if some element in $PATH
690     names a non-existent directory.  (thanks to Andreas Fuchs)
691   * bug fix: ROUND and TRUNCATE could, under certain circumstances on
692     the PPC platform, lead to stack corruption; this has been fixed.
693     (reported by Rainer Joswig)
694   * bug fix: ASH on an (UNSIGNED-BYTE 32) with a shift of -32 or lower
695     no longer ever returns 1 instead of 0.  (thanks to Lars Brinkhoff)
696   * fixed bug 285: TRUNCATE on bignum arguments, and indeed bignum
697     arithmetic in general, is now much more reliable on the PPC
698     platform.
699   * bug fix: LOGCOUNT on (UNSIGNED-BYTE 64) objects on the Alpha 
700     platform now returns the right answer.
701   * optimization: restored some effective method precomputation in
702     CLOS (turned off by an ANSI fix in sbcl-0.8.3); the amount of
703     precomputation is now tunable.
704   * optimization: compiler-internal data structure use has been
705     reviewed, and changes have been made that should improve the
706     performance of the compiler by about 20%.
707   * optimization: performance of FILL (and :INITIAL-ELEMENT) on
708     simple-base-strings and simple-bit-vectors is improved.
709   * optimization: the optimization of 32-bit logical and arithmetic
710     functions introduced in version 0.8.3 on the x86 has been
711     implemented on the mips, ppc and sparc platforms; an
712     implementation of the same facility, but for 64-bit arithmetic,
713     has been added for the alpha.
714   * microoptimization: the compiler is better able to make use of the
715     x86 LEA instruction for multiplication by constants.
716   * bug fix: in some situations compiler did not report usage of
717     generic arithmetic in (SPEED 3) policy.
718   * bug 145b fix: compiler used wrong type specifier while converting
719     MEMBER-types to numeric.
720   * bug fix: COMPILE-FILE must bind *READTABLE*. (reported by Doug
721     McNaught)
722   * bug fix: (SETF AREF) on byte-sized-element arrays with constant 
723     index argument now works properly on the Alpha platform.
724   * bug fix: floating point exception treatment on the Alpha platform
725     is improved.
726   * bug fix: FILE-POSITION works much better on string input and 
727     output streams.  (thanks to Nikodemus Siivola)
728   * bug fix: many threading/garbage collection symptoms sorted.  
729     SB-THREAD:INTERRUPT-THREAD now safe to call on a thread that 
730     might be pseudo-atomic.
731   * internal change: Stopping for GC is now done with signals not 
732     ptrace. GC is now done in whichever thread wanted it, instead of
733     in the parent. 
734   * bug fix: GC hooks (missing since 0.8) reinstated, so finalizers 
735     work again.
736   * bug fix: result form in DO is not contained in the implicit
737     TAGBODY.
738   * incompatible change: ICR structure is changed; the value part of
739     CONTINUATION is now called LVAR; corresponding functions are
740     renamed (e.g. SB-C::CONTINUATION-TYPE has become SB-C::LVAR-TYPE).
741   * added type deriver for ISQRT (thanks to Robert E. Brown).
742   * bug fix: better support for loading from the command line when an
743     initialization file sets (READTABLE-CASE *READTABLE*).  (thanks 
744     to Adam Warner)
745   * fixed some bugs revealed by Paul Dietz' test suite:
746     ** the RETURN clause in LOOP is now equivalent to DO (RETURN ...).
747     ** ROUND and FROUND now give the right answer when given very
748        small float arguments.
749     ** (FLOAT X) for X of type DOUBLE-FLOAT now returns X in all
750        circumstances.
751     ** optimizer for (EXPT X 0) did not work for X not of type FLOAT.
752     ** (GCD 0 <negative-integer>) returned <negative-integer>.
753     ** LCM should return a non-negative integer.
754     ** PARSE-INTEGER returned the index of a terminator instead of the
755        upper bounding index of a substring in case :JUNK-ALLOWED NIL.
756     ** PARSE-INTEGER returned an incorrect index being applied to a
757        displaced string.
758     ** LCM with two arguments of 0 returns 0 rather than signalling
759        DIVISION-BY-ZERO.
760     ** unsigned addition of a 32-bit constant with the high bit set no
761        longer causes an internal compiler error on the x86.
762     ** LOGBITP accepts a non-negative bignum as its INDEX argument.
763     ** compiler incorrectly derived types of DPB and DEPOSIT-FIELD
764        with negative last argument.
765     ** byte specifiers with zero size and position no longer cause
766        an error during type derivation.
767     ** bignum multiplication on the Alpha platform now returns the
768        right answer.
769   * porting: The system now builds on SuSE AMD64, although it still
770     generates a 32-bit binary.
771   * .fasl file incompatibility: The fasl file version number has
772     been incremented (because of the changes to internal compiler
773     data structures referred to above).
774
775 changes in sbcl-0.8.3 relative to sbcl-0.8.2:
776   * SBCL now builds and runs on MacOS X (version 10.2), or perhaps
777     more accurately, on the Darwin kernel running on PowerPC hardware.
778     (thanks to Brian Mastenbrook, Pierre Mai and Patrik Nordebo)
779   * Compiler code deletion notes now signal a condition of type
780     SB-EXT:CODE-DELETION-NOTE (a subtype of SB-EXT:COMPILER-NOTE) with
781     an associated MUFFLE-WARNING restart.
782   * The compiler now performs limited argument count validation of
783     constant format strings in FORMAT, and where appropriate in ERROR, 
784     CERROR and WARN.  (thanks to Gerd Moellmann)
785   * New ASDF-INSTALL contrib can be used for automatic download and 
786     installation of third-party Lisp code from CCLAN or other sites
787     via CLiki.
788   * Threaded builds (:SB-THREAD) now support SB-THREAD:INTERRUPT-THREAD,
789     which forces another thread to execute a function supplied by the
790     caller.
791   * bug 75 fix: WITH-OUTPUT-TO-STRING (and MAKE-STRING-OUTPUT-STREAM)
792     now accept and act upon their :ELEMENT-TYPE keyword argument.
793     (reported by Martin Atzmueller, Edi Weitz)
794   * bug fix: FILE-POSITION now accepts position designators up to
795     ARRAY-DIMENSION-LIMIT or the extreme of the off_t range, whichever
796     is the greater.  (thanks to Patrik Nordebo)
797   * bug fix: MAKE-ARRAY ignored :INITIAL-CONTENTS NIL. (reported by
798     Kalle Olavi Niemitalo)
799   * bug fix: the CLASS-PROTOTYPE of the GENERIC-FUNCTION class is now
800     printable.  (reported by Eric Marsden)
801   * bug fix in sb-posix: mmap() now works on systems with a 64-bit
802     off_t, including Darwin and FreeBSD.  (thanks to Andreas Fuchs)
803   * x86 bug fix in control stack exhaustion checking: now shows backtrace
804   * bug fix in WITH-TIMEOUT: now the body can have more than one form.
805     (thanks to Stig Sandoe)
806   * bug fix in READ-SEQUENCE: READ-SEQUENCE following PEEK-CHAR or
807     UNREAD-CHAR now correctly includes the unread character in the
808     target sequence.  (thanks to Gerd Moellmann)
809   * bug fix in threaded builds: the system can now be suspended and
810     resumed by shell job control with minimal disruption.
811   * bug fixes in times and timezones >2038AD
812   * better handling of "where is GNU make?" problem in build scripts
813     (thanks to Nikodemus Siivola)
814   * new optimization: inside a named function any reference to a
815     function with the same name is considered to be a self-reference;
816     this behaviour is controlled with SB-C::RECOGNIZE-SELF-CALLS
817     optimization quality.
818   * new optimization on x86: logical functions and + now have
819     optimized (UNSIGNED-BYTE 32) versions, which are automatically
820     used when the result is truncated to 32 bits.
821   * VALUES declaration is partially enabled.
822   * fixes in SB-GROVEL (thanks to Andreas Fuchs)
823   * fixed some bugs revealed by Paul Dietz' test suite:
824     ** The system now obeys the constraint imposed by
825        UPGRADED-ARRAY-ELEMENT-TYPE that the upgraded array element
826        types form a lattice under type intersection.
827     ** FFLOOR, FTRUNCATE, FCEILING and FROUND work with integers.
828     ** ASSOC now ignores NIL elements in an alist.
829     ** CEILING now gives the right answer with MOST-NEGATIVE-FIXNUM
830        and (1+ MOST-POSITIVE-FIXNUM) answers.
831     ** The addition of a method with invalid qualifiers to a generic
832        function does not cause an error to be signalled immediately;
833        a warning is signalled, and the error is generated only on
834        calling the generic function.
835   * changed .fasl file version number, in part to add type codes for
836     new array subtypes UNSIGNED-BYTE 7, 15, 29, and 31 mandated by 
837     obscure ANSI requirements
838
839 changes in sbcl-0.8.2 relative to sbcl-0.8.1:
840   * fixed bug 148: failure to inline-expand a local function left
841     garbage, confusing the compiler.
842   * fixed bugs 3cd: structure slot readers perform type check if the
843     slot can have an invalid value (i.e. it is either not initialized
844     or can be written with a less specific slot writer).
845   * bug fix: the compiler now traps array references to elements off
846     the end of an array; previously, the bounds checking in some
847     circumstances could go off-by-one.
848   * improved MACHINE-VERSION, especially on Linux (thanks to Lars
849     Brinkhoff)
850   * type declarations for array element types now obey the description
851     on the CLHS page "Declaration TYPE", as per discussions on
852     sbcl-help around 2003-05-08.  This means that a declaration 
853     (TYPE (ARRAY FOO) BAR) means that, within the scope of the
854     declaration, all references to BAR will be asserted or assumed
855     (with THE, so dependent on compiler policy) to involve objects of
856     type FOO.  Note that no such declaration is implied in 
857     (MAKE-ARRAY .. :ELEMENT-TYPE 'FOO).
858   * declared types of functions from the "Conditions"
859     chapter. (reported by Paul Dietz)
860   * bug fix: CERROR accepts a function as its first argument.
861   * bug fix: NTH an NTHCDR accept a bignum as index
862     arguments. (reported by Adam Warner)
863   * optimization: character compare routines now optimize comparing
864     against a constant character. (reported by Gilbert Baumann)
865   * bug fix: (SETF AREF) on byte-sized-element arrays with constant index
866     argument now works properly on the MIPS platform.
867   * fixed compiler failure on (TYPEP x '(NOT (MEMBER 0d0))).
868   * repeated evaluation of the same DEFSTRUCT, a slot of which is
869     declared to have a functional type, does not cause an error
870     anymore.
871   * fixed bug: sometimes MAKE-INSTANCE did not work with classes with
872     many :DEFAULT-INITARGS. (reported by Istvan Marko)
873   * fixed bug: if last continuation of a deleted block has a
874     destination, this destination should be deleted too. (reported by
875     ohler on #lisp)
876   * fixed a bug in the bootstrap process: the host compiler's values
877     of ARRAY-DIMENSION-LIMIT and ARRAY-TOTAL-SIZE-LIMIT no longer leak
878     into the newly-built SBCL. (reported by Eric Marsden on #lisp,
879     test case from Patrik Nordebo)
880   * improved the ability of the disassembler on the PPC platform to
881     provide helpful disassembly notes.
882   * SB-MOP:CLASS-PROTOTYPE on built-in-classes returns an instance of
883     the class in more cases than previously.
884   * bug fix: FILE-POSITION now understands :START and :END for
885     STRING-INPUT-STREAMs.  (thanks to Nikodemus Siivola)
886   * bug fix: (SIGNED-BYTE 8) streams no longer return (UNSIGNED-BYTE
887     8) data.  (thanks to David Lichteblau)
888   * bug fix: it is possible to add a method to a generic function
889     without lambda list.
890   * bug fix: reader failed to signal END-OF-FILE inside an
891     object representation. (reported by Nikodemus Siivola)
892   * fixed some bugs revealed by Paul Dietz' test suite:
893     ** LAST and [N]BUTLAST should accept a bignum.
894     ** condition slot accessors are methods.
895     ** (VECTOR NIL) is a subtype of STRING.
896
897 changes in sbcl-0.8.1 relative to sbcl-0.8.0:
898   * minor incompatible change: some nonsensical specialized lambda
899     lists (used in DEFMETHOD) which were previously ignored now signal
900     errors.
901   * minor incompatible change: the system is now aware of the types of
902     variables in the COMMON-LISP package, and will signal errors for
903     most violations of these type constraints (where previously they
904     were silently accepted).
905   * minor incompatible change: COMPILE-FILE now uses the freedom
906     afforded (ANSI 3.2.2.3) to use derived function types for
907     functions defined in the same file. This also permits the system
908     to warn on static type mismatches and function
909     redefinition.  (Currently it does not work with high DEBUG level.)
910   * minor incompatible change: VALUES declaration is disabled.
911   * When issuing notes, the compiler now signals a condition of type
912     SB-EXT:COMPILER-NOTE, and provides an associated MUFFLE-WARNING
913     restart for use in user handlers.  It is expected that the
914     COMPILER-NOTE condition will eventually become a condition
915     supertype to a hierarchy of note types, which will then be
916     handleable in a similar fashion. However, at the moment, no such
917     note subtypes yet exist. (SB-INT:SIMPLE-COMPILER-NOTE exists,
918     but it's an implementation detail, not a classification for the
919     purpose above.)
920   * Changes in type checking closed the following bugs:
921     ** type checking of unused values (192b, 194d, 203);
922     ** template selection based on unsafe type assertions (192c, 236);
923     ** type checking in branches (194bc).
924   * A short form of VALUES type specifier has ANSI meaning (it has
925     increased the number of situations when SBCL cannot perform type
926     checking).
927   * fixed bug in DEFSTRUCT: once again, naming structure slots with
928     keywords or constants is permissible.
929   * STREAM-READ-SEQUENCE and STREAM-WRITE-SEQUENCE now have methods
930     defined on the relevant FUNDAMENTAL-BINARY-{INPUT,OUTPUT}-STREAM
931     classes.  (thanks to Antonio Martinez)
932   * improved ANSIness in DESCRIBE: The DESCRIBE function no longer
933     outputs FRESH-LINE or TERPRI, and no longer converts its stream
934     argument to a pretty-print stream. Instead, it leaves any such 
935     operations to DESCRIBE-OBJECT methods.
936   * bug fix: APROPOS now respects the EXTERNAL-ONLY flag. (reported
937     by Teemu Kalvas)
938   * bug fix: NIL is now a valid destructuring argument in DEFMACRO
939     lambda lists. (thanks to David Lichteblau)
940   * bug fix: Defining a generic function with a :METHOD-CLASS being a
941     subclass of STANDARD-METHOD no longer causes stack exhaustion.
942     (thanks to Gerd Moellmann)
943   * fixed bug 246: increased compilation speed of long
944     MULTIPLE-VALUE-BIND (and likewise of NTH-VALUE with a constant
945     integer argument)
946   * a contributed module implementing COMPILER-LET and MACROEXPAND-ALL
947     has been included.
948   * DEFCONSTANT now throws a condition of type
949     SB-EXT:DEFCONSTANT-UNEQL if it is being asked to redefine a
950     constant to a non-EQL value; CONTINUE and ABORT restarts
951     respectively change and preserve the value. 
952   * fixed bug 63: The code walker, part of the implementation of CLOS,
953     is now better at handling symbol macros.
954   * bug fix: There is no longer an internal implementation type named
955     CL:LENGTH. (reported by Raymond Toy)
956   * bug fix: In macro-like defining macros/special operators the
957     implicit block does not enclose the lambda list.
958   * fixed bugs 10 and 43: Bare VALUES, AND, OR and MEMBER symbols (not
959     enclosed in parentheses) are not suitable as type specifiers, and
960     their use properly signals an error now.
961   * bug fix: An argument count mismatch for a type specifier in code
962     being compiled no longer causes an unhandled error at compile
963     time, but signals a compile-time warning.
964   * fixed simple vector readable printing
965   * bug fix: DESCRIBE takes more care over whether the class
966     precedence list slot of a class is bound before accessing it.
967     (reported by Markus Krummenacker)
968   * bug fix: FORMATTER can successfully compile pretty-printer format
969     strings which use variants of the ~* directive inside.
970   * bug fix: SEARCH now applies its TEST predicate to the elements of
971     the arguments in the correct order. (thanks to Wolfhard Buss)
972   * fixed bug 235b: The compiler uses return types of MAPCAR and friends
973     in type inference. (thanks to Robert E. Brown)
974   * bug fix: Reading in symbols with an explicit package name of ""
975     (e.g. '||::FOO) now works correctly.  (reported by Henrik Motakef)
976   * fixed some bugs revealed by Paul Dietz' test suite:
977     ** NIL is now allowed as a structure slot name.
978     ** Arbitrary numbers, not just REALs, are allowed in certain
979        circumstances in LOOP for-as-arithmetic clauses.
980     ** Multiple class redefinitions before slot access no longer
981        causes a type error.
982     ** (SETF FIND-CLASS) now accepts NIL as an argument to remove the
983        association between the name and a class.
984     ** Generic functions with non-standard method-combination and over
985        five methods all of which return constants no longer return NIL
986        after the first few invocations. (thanks to Gerd Moellmann)
987     ** CALL-NEXT-METHOD with no arguments now passes the original
988        values of the arguments, even in the presence of assignment.
989     ** Functions [N]SUBST*, LAST, NRECONC, [N]SUBLIS may return any
990        object.
991     ** DISASSEMBLE works with closures and funcallable instances.
992     ** ADD-METHOD now returns the generic function, not the new method.
993     ** FIND-METHOD signals an error if the lengths of the specializers
994        is incompatible with the generic function, even if the ERRORP
995        argument is true.
996     ** TYPE-OF returns recognizeable subtypes of all built-in-types of
997        which its argument is a member.
998     ** DEFCLASS only redefines the class named by its class-name
999        argument if that name is the proper name of the class;
1000        otherwise, it creates a new class.
1001     ** SLOT-UNBOUND now correctly initalizes the CELL-ERROR-NAME slot
1002        of the UNBOUND-SLOT condition to the name of the slot.
1003     ** (SETF (AREF bv 0) ...) did not work for bit vectors.
1004     ** SLOT-UNBOUND and SLOT-MISSING now have their return values
1005        treated by SLOT-BOUNDP, SLOT-VALUE, (SETF SLOT-VALUE) and
1006        SLOT-MAKUNBOUND in the specified fashion.
1007
1008 changes in sbcl-0.8.0 relative to sbcl-0.8alpha.0
1009   * SBCL now builds using CLISP (version of late April 2003 from CVS) as
1010     cross-compilation host. As a consequence, we can now bootstrap our
1011     way up to SBCL starting with a bare gcc toolchain and human-readable
1012     source code (first the source to CLISP, then the source to SBCL).
1013   * A contributed module containing a partial implementation of the
1014     simple-streams interface has been included.  (thanks to Rudi
1015     Schlatte)
1016   * A contributed module implementing the RFC1321 Message Digest
1017     Algorithm, known as MD5, has been included.
1018   * minor incompatible change: The :NEGATIVE-ZERO-IS-NOT-ZERO feature
1019     no longer has any effect, as the code controlled by this feature
1020     has been deleted.  (As far as we know, no-one has ever built using
1021     this feature, and its semantics were confused in any case).
1022   * minor incompatible change: As a consequence of making SLOT-EXISTS-P
1023     work on conditions (as required by the ANSI specification),
1024     SLOT-VALUE, (SETF SLOT-VALUE) and SLOT-BOUNDP likewise have the
1025     expected behaviour on conditions.  Users should note, however,
1026     that such behaviour is not required by the ANSI specification,
1027     and so use of this behaviour may render their code unportable.
1028   * fixed some bugs revealed by Paul Dietz' test suite:
1029     ** the GENERIC-FUNCTION type is no longer disjoint from FUNCTION
1030        types.
1031     ** &ENVIRONMENT parameter in macro lambda list is bound first.
1032     ** SXHASH on condition objects no longer returns NIL.
1033     ** :ALLOCATION :CLASS slots are better treated; their values are
1034        updated on class redefinition, and initforms inherited from
1035        superclasses are applied.
1036     ** REMOVE-METHOD returns its generic function argument even when
1037        no method was removed.
1038     ** SHARED-INITIALIZE now initializes the values of the requested
1039        slots, including those with :ALLOCATION :CLASS.
1040     ** ALLOCATE-INSTANCE now works on structure classes defined via
1041        DEFSTRUCT (and not just by those from DEFCLASS :METACLASS
1042        STRUCTURE-CLASS).
1043     ** SLOT-EXISTS-P now works on conditions, as well as structures
1044        and CLOS instances.
1045     ** MAKE-LOAD-FORM now has the required methods on
1046        STRUCTURE-OBJECT, CONDITION and STANDARD-OBJECT.
1047     ** MAKE-LOAD-FORM-SAVING-SLOTS no longer returns a special
1048        keyword, and now implements the SLOT-NAMES argument.
1049     ** methods with &OPTIONAL arguments no longer allow too many
1050        arguments to be passed in the call without error.
1051     ** DEFGENERIC now checks that the :ARGUMENT-PRECEDENCE-ORDER
1052        option is consistent with the required arguments of the generic
1053        function lambda list.
1054   * bug fix: REQUIRE accepts a string designator. (Thanks to 
1055     Antonio Martinez.)
1056   * bug fix: SB-MOP:DIRECT-SLOT-DEFINITION-CLASS and
1057     SB-MOP:EFFECTIVE-SLOT-DEFINITION-CLASS now have the
1058     specified-by-AMOP lambda list of (CLASS &REST INITARGS).
1059   * bug fix: The compiler now checks for duplicated variables in macro
1060     lambda lists.
1061   * bug fix: SETQ on globals returns the correct value.
1062   * fixed bug 47.d: (DEFGENERIC IF (X)) now signals a PROGRAM-ERROR,
1063     not a COMPILER-ERROR (followed by some other strange error on
1064     choosing the CONTINUE restart).
1065   * bug fix: make.sh and friends are now more consistent in the way that
1066     they look for GNU "make".
1067
1068 changes in sbcl-0.8alpha.0 relative to sbcl-0.7.14
1069   * experimental native threads support (on x86 Linux >=2.4 only).
1070     This is not compiled in by default: you need to add :SB-THREAD to
1071     the target features.  See the "Beyond ANSI" chapter of the manual
1072     for details.
1073   * fix for longstanding nonANSIism: The old distinction between
1074     CL:CLASS objects and SB-PCL:CLASS objects has been eliminated.
1075     The return value from CL:FIND-CLASS is now a CLOS class, and
1076     likewise that of CL:CLASS-OF; CL:BUILT-IN-CLASS,
1077     CL:STRUCTURE-CLASS and CL:STANDARD-CLASS name CLOS classes.
1078   * An interface to the MetaObject Protocol, as described in Kiczales,
1079     des Rivieres and Bobrow's "The Art of the Metaobject Protocol",
1080     MIT Press, 1991, is available from the SB-MOP package.
1081   * incompatible change: the SB-PCL package should now be considered
1082     a private implementation detail, and no longer a semi-private MOP
1083     interface.
1084   * minor incompatible change: due to rearrangement for threads, the
1085     control stack and binding stack are now allocated at arbitrary
1086     addresses instead of being hardcoded per-port.  Users affected by
1087     this probably have to be doing advanced things with shared
1088     libraries, and will know who they are.
1089   * minor incompatible change: Previously, all --eval forms used were
1090     processed with READ before any of them were processed with EVAL.
1091     Now each --eval form is processed with both READ and EVAL before
1092     the next --eval form is processed. (Thus package operations like
1093     sbcl --eval "(defpackage :foo)" --eval "(print 'foo::bar)" now
1094     work as the user might reasonably expect.)
1095   * minor incompatible change: *STANDARD-INPUT* is now only an
1096     INPUT-STREAM, not a BIDIRECTIONAL-STREAM.  (thanks to Antonio
1097     Martinez)
1098   * minor incompatible change: Y-OR-N-P is now character-oriented,
1099     not line oriented.  Also, YES-OR-NO-P now works without errors.
1100     (thanks to Antonio Martinez)
1101   * sb-aclrepl module improvements: an integrated inspector, added
1102     repl features, and a bug fix to :trace command.
1103   * Known functions, which cannot be open coded by the backend, are
1104     considered to be able to check types of their arguments. (fixing
1105     a bug report by Nathan J. Froyd)
1106   * fixed a bug in computing method discriminating functions: It is
1107     now possible to define methods specialized on classes which have
1108     forward-referenced superclasses. (thanks to Gerd Moellmann)
1109   * fixed evaluation order in optional entries (reported by Gilbert
1110     Baumann)
1111   * SB-MOP:ENSURE-CLASS-USING-CLASS now takes its arguments in the
1112     specified-by-AMOP order of (CLASS NAME &REST ARGS &KEY).
1113   * SB-MOP:COMPUTE-EFFECTIVE-SLOT-DEFINITION now takes the
1114     required-by-AMOP NAME argument, as well as CLASS and
1115     DIRECT-SLOT-DEFINITIONS.  (thanks to Kevin Rosenberg)
1116   * fixed bug 20: DEFMETHOD can define methods using names that are
1117     not the proper names of classes to designate class specializers.
1118   * bug fix: INTERACTIVE-STREAM-P now works on streams associated with
1119     Unix file descriptors, instead of blowing up. (thanks to Antonio
1120     Martinez)
1121   * Garbage collection refactoring: user-visible change is that a
1122     call to the GC function during WITHOUT-GCING will not do garbage
1123     collection until the end of the WITHOUT-GCING.  If you were doing
1124     this you were probably losing anyway.
1125   * fixed bug in MEMBER type: (MEMBER 0.0) is not the same as
1126     (SINGLE-FLOAT 0.0 0.0), because of the existence of -0.0 which is
1127     TYPEP the latter but not the former.
1128   * The compiler issues a full WARNING for calls to undefined functions
1129     with names from the CL package.
1130   * MAP-INTO for a vector destination is open coded.  (reported by
1131     Brian Downing on c.l.l)
1132   * bug fix: the long form of DEFINE-METHOD-COMBINATION now accepts a
1133     documentation string.
1134   * fixed some bugs revealed by Paul Dietz' test suite:
1135     ** COPY-ALIST now signals an error if its argument is a dotted
1136        list.
1137     ** Condition slots are now accessed more correctly in the presence
1138        of multiple initargs for a given slot.
1139     ** The USE-VALUE, CONTINUE and STORE-VALUE functions now correctly
1140        exclude restarts of the same name associated with a different
1141        condition.
1142     ** DEFCLASS of forward-referenced classes with another
1143        forward-referenced class in the superclasses list no longer
1144        causes an error.
1145     ** Condition slots are now initialized once each, not multiple
1146        times. (thanks to Gerd Moellmann)
1147     ** CONVERT-MORE-CALL failed on a lambda list (&KEY). (thanks to
1148        Gerd Moellmann)
1149     ** &WHOLE and &REST arguments in macro lambda lists are patterns.
1150     ** NSET-EXCLUSIVE-OR does not return extra elements when its
1151        arguments contain duplicated elements.
1152     ** RESTART-CASE understands local macros.
1153     ** RESTART-CASE associates exactly its own restarts with a condition.
1154     ** ENDP in safe mode checks its argument to be of type LIST.
1155     ** COPY-SYMBOL in a threaded build no longer fails when the symbol
1156        in question is unbound.
1157     ** Optimized MAKE-INSTANCE functions no longer cause internal
1158        assertion failures in the presence of duplicate initargs.
1159     ** SLOT-MAKUNBOUND returns the instance acted upon, not NIL.
1160     ** Side-effectful :DEFAULT-INITARGS have their side-effects
1161        propagated even in the ctor optimized implementation of
1162        MAKE-INSTANCE.
1163     ** :ALLOW-OTHER-KEYS NIL is now accepted in an initarg list.
1164
1165 changes in sbcl-0.7.14 relative to sbcl-0.7.13:
1166   * a better implementation of SXHASH on (simple) bit vectors,
1167     measured both in execution speed and in distribution of results
1168     over the positive fixnums, has been installed.  Likewise, a better
1169     implementation of EQUAL for simple bit vectors is now available.
1170   * fixed CEILING optimization for a divisor of form 2^k.
1171   * fixed bug 240 (emitting extra style warnings "using the lexical
1172     binding of the symbol *XXX*" for &OPTIONAL arguments).  (reported
1173     by Antonio Martinez)
1174   * fixed SXHASH, giving different results for NIL depending on type
1175     declarations (SYMBOL or LIST).  (thanks to Gerd Moellmann)
1176   * fixed bug in DEFPARAMETER and DEFVAR: they could assign a lexical
1177     variable.  (found by Rolf Wester)
1178   * SBCL does not ignore type declarations for special
1179     variables.  (reported by rif on c.l.l 2003-03-05)
1180   * some bug fixes in contrib/sb-aclrepl/
1181   * fixed some bugs revealed by Paul Dietz' test suite:
1182     ** a bug in the CONS type specifier, whereby the CAR and CDR
1183        types got intertwined, has been fixed;
1184     ** the type system is now able to reason about the interaction
1185        between INTEGER and RATIO types more completely;
1186     ** APPEND, [N]REVERSE and NRECONC check that those their
1187        arguments, which must be proper lists, are really so;
1188     ** An array specialized to be unable to hold elements has been
1189        implemented, as required -- yes, really -- by ANSI;
1190     ** GETF and GET-PROPERTIES throw a TYPE-ERROR, not a SIMPLE-ERROR,
1191        on malformed property lists;
1192
1193 changes in sbcl-0.7.13 relative to sbcl-0.7.12:
1194   * incompatible packaging change: in line with Unix convention, 
1195     SBCL now looks for its core file in /usr/{local/,}lib/sbcl/sbcl.core 
1196     if it's not in $SBCL_HOME.  It also sets SBCL_HOME to match.
1197   * REQUIRE and PROVIDE are now optionally capable of doing something
1198     useful. See the documentation string for REQUIRE.
1199   * infrastructure for a managed SBCL contrib system: contributed 
1200     modules in this release include:
1201     ** the ASDF system definition facility;
1202     ** an interface to the BSD Sockets API;
1203     ** an ACL-like convenience interface to the repl; 
1204        (thanks to Kevin Rosenberg)
1205     ** an implementation of ROTATE-BYTE, with efficient implementation
1206        on x86 hardware;
1207   * fixed a bug in LOG, so that LOG of a rational argument near 1 now
1208     gives a closer approximation to the right answer than previously.
1209     (thanks to Raymond Toy)
1210   * fixed bug 157: TYPEP, SUBTYPEP, UPGRADED-ARRAY-ELEMENT-TYPE and
1211     UPGRADED-COMPLEX-PART-TYPE now take (ignored, in all situations)
1212     optional environment arguments, as required by ANSI.
1213   * fixed bugs in other functions taking environment objects, allowing
1214     calls with an explicit NIL environment argument to be compiled
1215     without error.
1216   * fixed bug 228: primary return values from
1217     FUNCTION-LAMBDA-EXPRESSION are either NIL or suitable for input to
1218     COMPILE or FUNCTION.
1219   * fixed a bug in DEFSTRUCT: predicates for :NAMED structures with
1220     :TYPE will no longer signal errors on innocuous objects.
1221   * fixed bug 231b: SETQ is better at respecting type declarations in
1222     the lexical environment.
1223   * fixed a bug in DEFCLASS: classes named by symbols with no or
1224     unprintable packages can now be defined.
1225   * fixed a bug in RESTART-BIND: The :TEST-FUNCTION option had been
1226     carelessly renamed to :TEST-FUN.  (thanks to Robert E. Brown)
1227   * fixed compiler failure related to checking types of functions.
1228     (reported by Robert E. Brown)
1229   * the compiler is now much more consistent in its error-checking
1230     treatment of bounding index arguments to sequence functions: in
1231     (SAFETY 3) code, errors will be signalled in almost all cases if
1232     invalid sequence bounding indices are passed to functions defined
1233     by ANSI to operate on sequences.
1234   * fixed a bug in the build procedure: documentation of SBCL-specific
1235     packages is now preserved and available in the final Lisp image.
1236   * lifted FDEFINITION lookup out of loops in the implementation of
1237     many list operations.  (thanks to Robert E. Brown)
1238   * fixed a bug in the reader: the #n# reader macro now works for
1239     objects of type STANDARD-OBJECT.  (reported by Tony Martinez)
1240   * the compiler is now aware that SYMBOL-FUNCTION returns a FUNCTION
1241     and that READ-DELIMITED-LIST returns a LIST.  (thanks to Robert
1242     E. Brown and Tony Martinez respectively)
1243   * PCL is now smarter about SLOT-VALUE, (SETF SLOT-VALUE) and
1244     SLOT-BOUNDP: in particular, it is now able to optimize them much
1245     better, and is now not vulnerable to having packages renamed.
1246     Furthermore, a compliance bug has been fixed: SLOT-MISSING is now
1247     always called when a slot is not present in an instance.  (thanks
1248     to Gerd Moellmann)
1249   * fixed a bug related to CONCATENATED-STREAMs: PEEK-CHAR will no
1250     longer signal an error on unreading a character following EOF on
1251     the previous constituent stream.  (thanks to Tony Martinez)
1252   * fixed some bugs revealed by Paul Dietz' test suite:
1253     ** ARRAY-IN-BOUNDS-P now allows arbitrary integers as arguments,
1254        not just nonnegative fixnums;
1255     ** the logical bit-array operators such as BIT-AND now accept an
1256        explicit NIL for their "opt-arg" argument (to indicate a
1257        freshly-consed result bit-array);
1258     ** ELT now signals an error on an invalid sequence index in safe
1259        code;
1260     ** the type system is now cleverer about negations of numeric
1261        types, and consequently understands the BIGNUM and RATIO types
1262        better;
1263     ** the type system is now cleverer about the interaction between
1264        INTEGER and RATIO types: while bugs still remain, many more
1265        cases are accurately computed;
1266     ** in TYPECASE, OTHERWISE now only introduces an otherwise-clause
1267        if it is in the last clause;
1268     ** CONSTANTLY now correctly returns a side-effect-free function in
1269        all cases;
1270     ** DECLARE is no longer treated as a special-operator; in
1271        particular, SPECIAL-OPERATOR-P no longer returns T for DECLARE;
1272   * incremented fasl file version number due to the change in the
1273     DEFSTRUCT-SLOT-DESCRIPTION structure.
1274
1275 changes in sbcl-0.7.12 relative to sbcl-0.7.11:
1276   * minor incompatible change: code processed by the "interpreter" or
1277     EVAL now has a compilation optimization policy of (DEBUG 2)
1278     (changed from (DEBUG 1)) to improve debuggability of interactive
1279     development, and to allow the use of the debug RETURN command in
1280     such code.
1281   * an experimental implementation of the RETURN command for the
1282     debugger has been included.  (thanks to Frederik Kuivinen)
1283   * fixed bug 62: constraints were not propagated into a loop.
1284   * fixed bug in embedded calls of SORT (reported and investigated by
1285     Wolfgang Jenkner).
1286   * fixed some bugs revealed by Paul Dietz' test suite:
1287     ** printing and reading of arrays with some dimensions having
1288        length 0 (thanks to Gerd Moellmann);
1289     ** BOA constructor with &AUX argument without a default value does
1290        not cause a type error;
1291     ** CONSTANTP now returns true for all self-evaluating objects.
1292
1293 changes in sbcl-0.7.11 relative to sbcl-0.7.10:
1294   * fixed bug 127: DEFSTRUCT now does not clobber old structure
1295     accessors that are related by inheritance, as specified in the
1296     :CONC-NAME section of the specification of DEFSTRUCT.  (thanks to
1297     Valtteri Vuorikoski)
1298   * The compiler is now able to inline functions that were defined in
1299     a complex lexical environment (e.g. inside a MACROLET).
1300   * fixed bug in DESCRIBE, which now works on rank-0 arrays.  (thanks
1301     to Lutz Euler)
1302   * Support for the upcoming FreeBSD-5.0 release has been included.
1303     (thanks to Dag-Erling Smorgrav)
1304   * fixed bug 219: DEFINE-COMPILER-MACRO no longer has compile-time
1305     effect when it is not in a toplevel context.
1306   * fixed bug 222: DEFMETHOD and SYMBOL-MACROLET interactions now
1307     stand a better chance of being correct.  (thanks to Gerd
1308     Moellmann)
1309   * fixed bug in COERCE, which now signals an error on coercing a
1310     rational to a bounded real type which excludes the expected
1311     answer.
1312   * The compiler is now able to derive types more accurately from the
1313     COERCE and COMPILE functions.
1314   * fixed bug 223: functional binding is considered to be constant
1315     only for symbols in the CL package.
1316   * fixed bug 231: SETQ did not check the type of a variable being set
1317     (reported by Robert E. Brown)
1318   * A new optimization for MAKE-INSTANCE has been included, fixing
1319     various bugs (including relating to :ALLOCATION :CLASS slots and
1320     :DEFAULT-INITARGS over-eager evalueation).  (thanks to Gerd
1321     Moellmann)
1322   * fixed some LOOP bugs revealed by Paul Dietz' test suite:
1323     ** As required by ANSI, LOOP now disallows anonymous collection
1324        clauses such as COLLECT I in conjunction with aggregate boolean
1325        clauses such as THEREIS (= I 1);
1326     ** LOOP now signals an error when any variable is reused in the
1327        same loop (including the potentially useful construct analogous
1328        to WITH A = 1 WITH A = (1+ A);
1329     ** IT is only a special loop symbol within the first clause of a
1330        conditional loop clause;
1331     ** LOOP with a typed iteration variable over a hashtable now
1332        signals a type error iff it should.
1333   * fixed some other bugs revealed by Paul Dietz' test suite:
1334     ** FILE-STREAM now names the class previously known as FD-STREAM;
1335     ** in DEFSTRUCT, a bare :CONC-NAME (or a :CONC-NAME with no
1336        argument) no longer signals an error;
1337     ** likewise in DEFSTRUCT, :CONC-NAME NIL now respects the package
1338        of the slot symbol, rather than using the current package
1339        ((:CONC-NAME "") continues to intern the slot's name in the
1340        current package);
1341   * incremented fasl file version number, because of the incompatible
1342     change to the DEFSTRUCT-DESCRIPTION structure, and again because
1343     of the new implementation of DEFINE-COMPILER-MACRO.
1344
1345 changes in sbcl-0.7.10 relative to sbcl-0.7.9:
1346   * Support for building SBCL for MIPS platforms running in
1347     little-endian mode has now been checked in, and basic
1348     functionality on said platforms verified.
1349   * minor incompatible change: PCL now records the pathname of a file
1350     in which methods and the like are defined, rather than its
1351     truename.
1352   * minor incompatible change: TRUENAME now considers the truename of
1353     a file naming a directory to be the pathname with :DIRECTORY
1354     component indicating that directory.
1355   * minor incompatible change: a NAMED clause in the extended form of
1356     LOOP no longer causes a BLOCK named NIL to surround the LOOP.  The
1357     reason for the previous behaviour is unclear.
1358   * more systematization and improvement of CLOS and MOP conformance
1359     in PCL (thanks to Gerd Moellman and Pierre Mai):
1360     ** the standard ANSI CL generic function NO-NEXT-METHOD is now
1361        implemented;
1362     ** DEFINE-METHOD-COMBINATION no longer signals an error for
1363        primary methods with no specializers;
1364     ** the MOP generic function GENERIC-FUNCTION-DECLARATIONS is now
1365        implemented;
1366     ** the Readers for Class Metaobjects methods CLASS-DIRECT-SLOTS
1367        and CLASS-DIRECT-DEFAULT-INITARGS have been implemented for
1368        FORWARD-REFERENCED-CLASSes; error reporting on
1369        CLASS-DEFAULT-INITARGS, CLASS-PRECEDENCE-LIST and CLASS-SLOTS
1370        has been improved;
1371     ** SXHASH on CLOS instances now uses a slot internal to the
1372        instance to return different numbers on distinct instances,
1373        while preserving the same return value through invocations of
1374        CHANGE-CLASS;
1375     ** DEFMETHOD signals errors when methods with longer incongruent
1376        lambda lists are added to generic functions;
1377     ** COMPUTE-CLASS-PRECEDENCE-LIST now has a method specialized on
1378        CLASS, as specified in AMOP;
1379     ** COMPUTE-SLOTS :AROUND now assigns locations sequentially based
1380        on the order returned by the primary method for classes of
1381        class STANDARD-CLASS;
1382     ** DEFINE-METHOD-COMBINATION now works with the :ARGUMENTS option.
1383   * fixed some bugs shown by Paul Dietz' test suite:
1384     ** DOLIST puts its body in TAGBODY;
1385     ** SET-EXCLUSIVE-OR sends arguments to :TEST function in the
1386        correct order;
1387     ** MULTIPLE-VALUE-SETQ evaluates side-effectful places before
1388        value producing form;
1389     ** if more variables are given to PROGV than values, extra
1390        variables are bound and made to have no value;
1391     ** NSUBSTITUTE on list arguments gets the right answer with
1392        :FROM-END;
1393     ** ELT signals an error of type TYPE-ERROR when the index argument
1394        is not a valid sequence index;
1395     ** LOOP signals (at macroexpansion time) an error of type
1396        PROGRAM-ERROR when duplicate variable names are found;
1397     ** LOOP supports DOWNTO and ABOVE properly; (thanks to Matthew Danish)
1398     ** FUNCALL of special-operators now cause an error of type
1399        UNDEFINED-FUNCTION;
1400     ** PSETQ now works as required in the presence of side-effecting
1401        symbol-macro places;
1402     ** NCONC accepts any object as its last argument;
1403     ** :COUNT argument to sequence functions may be BIGNUM; (thanks to
1404        Gerd Moellman)
1405     ** loop-for-as-package does not require a package to be explicitely
1406        specified;
1407     ** LOOP WITH now treats NIL in the d-var-spec correctly as an
1408        ignored binding.
1409   * fixed bug 166: compiler preserves "there is a way to go"
1410     invariant when deleting code.
1411   * fixed bug 172: macro lambda lists with required arguments after
1412     &REST arguments now cause an error to be signalled.  (thanks to
1413     Matthew Danish)
1414   * fixed Entomotomy PEEK-CHAR-WRONGLY-ECHOS-TO-ECHO-STREAM
1415     bug. (thanks to Matthew Danish)
1416   * fixed bug 225: STRING-STREAM is now a class. (reported by Gilbert
1417     Baumann)
1418   * fixed bug 136: CALL-NEXT-METHOD no longer gets confused when
1419     arguments are lexically rebound. (thanks to Gerd Moellmann and
1420     Pierre Mai)
1421   * fixed bug 194: error messages are now more informative when there
1422     is no primary method applicable in a call to a generic
1423     function. (thanks to Gerd Moellmann)
1424   * fixed bug in command line argument checking (thanks to Julian
1425     Fondren)
1426   * fixed bug in COUNT-IF, making it handle :FROM-END correctly
1427     (thanks to Matthew Danish)
1428   * incremented fasl file version number, because of the
1429     SXHASH-related changes in the layout of CLOS data structures
1430
1431 changes in sbcl-0.7.9 relative to sbcl-0.7.8:
1432   * minor incompatible change: The runtime (the Unix executable named
1433     "sbcl") is now much pickier about the .core files it will load.
1434     Essentially it now requires .core files to descend from the same
1435     build (not just the same sources or LISP-IMPLEMENTATION-VERSION)
1436     as the runtime does. (The intent is to prevent the crashes which
1437     can occur, and which can even be reported as mysterious failures,
1438     when people patch the sources or change the build parameters
1439     without changing LISP-IMPLEMENTATION-VERSION, then mix and match
1440     sbcl and .core files.)
1441   * fixed bug: VALUES-LIST is no longer optimized away.
1442   * fixed bug 142: The FFI conversion of C string values to Lisp
1443     string values no longer conses excessively. (thanks to Nathan
1444     Froyd porting Raymond Toy's fix to CMU CL)
1445   * began to systematize and improve MOP conformance in PCL (thanks to
1446     Nathan Froyd, Gerd Moellman and Pierre Mai):
1447     ** SLOT-DEFINITION-ALLOCATION now returns :CLASS, not the class
1448        itself;
1449     ** GENERIC-FUNCTION-ARGUMENT-PRECEDENCE-ORDER is now implemented;
1450     ** FINALIZE-INHERITANCE is now called on class finalization;
1451     ** DOCUMENTATION and (SETF DOCUMENTATION) now have the correct
1452        argument precedence order.
1453   * fixed bug 202: The compiler no longer fails on functions whose
1454     derived types contradict their declared type.
1455   * DEFMACRO is implemented via EVAL-WHEN instead of IR1 translation,
1456     so it can be non-toplevel.
1457   * The fasl file version number has changed (because of the new
1458     implementation of DEFMACRO).
1459   * (mostly) fixed bugs 46b and 46c: sequence functions now check, in
1460     safe code, that any length requirement by their type-specifier
1461     argument is valid.  The exceptions to this are described in bug
1462     213.
1463   * fixed bugs 46h and 46i: TWO-WAY- and CONCATENATED-STREAM creation
1464     functions now check the types of their inputs as required by ANSI.
1465   * fixed bug 48c: SYMBOL-MACROLET signals PROGRAM-ERROR when an
1466     introduced symbol is DECLAREd to be SPECIAL.
1467   * fixed reading of (COMPLEX DOUBLE-FLOAT) literals from fasl files
1468   * fixed bug: :COUNT argument to sequence functions may be negative
1469   * fixed bug: body of DO-SYMBOLS may contain declarations
1470   * fixed bug: PUSHNEW now evaluates its arguments from left to right
1471     (reported by Paul F. Dietz, fixed by Gerd Moellman)
1472   * fixed bug: PUSH, PUSHNEW and POP now evaluate a place given by a
1473     symbol macro only once
1474   * fixed printing of call frame when argument list is unavailable
1475   * fixed bug: :ALLOW-OTHER-KEYS is an allowed keyword name
1476   * compiler no longer signals WARNING on unknown keyword
1477     :ALLOW-OTHER-KEYS
1478
1479 changes in sbcl-0.7.8 relative to sbcl-0.7.7:
1480   * A beta-quality port to the mips architecture running Linux,
1481     based on the old CMUCL backend, has been made.  It has been tested
1482     on a big-endian kernel, and works sufficiently well to be able to
1483     rebuild itself; it has not been tested in little-endian mode.
1484   * fixed an inconsistency between gencgc.c and purify.c which made
1485     dumping/loading .core files unreliable
1486   * fixed bug 120a: The compiler now deals correctly with IFs where
1487     the consequent is the same as the alternative, instead of
1488     misderiving the return type. (thanks to Alexey Dejneka)
1489   * fixed bug 113: Logical pathnames are now dumpable (the logical
1490     host is resolved at load-time, throwing an error if it is not
1491     found).
1492   * fixed bug 174: FORMAT's error message is slightly clearer when a
1493     non-printing character is used in a format directive.
1494   * fixed several bugs in compiler checking of type declarations, i.e.
1495     violations of the Python "declarations are assertions" principle
1496     (thanks to Alexey Dejneka)
1497   * fixed several bugs in PCL's error checking (thanks to Gerd
1498     Moellmann)
1499   * fixed bug: printing of FILE-ERROR (thanks to Antonio
1500     Martinez-Shotton)
1501   * fixed bug in compilation of functions as first class values
1502     (thanks to Antonio Martinez-Shotton)
1503   * The compiler's handling TYPE-ERRORs which it can prove will
1504     inevitably happen at runtime has been cleaned up and corrected
1505     in several ways. (thanks to Alexey Dejneka)
1506   * improved argument type checking for various basic arithmetic
1507     operations (MAX, +, LOGXOR, etc.) which have had so much TLC
1508     lavished on them in the past that they can be compiled in many
1509     ways in different special cases
1510   * fixed bug 181: compiler checks validity of user supplied type
1511     specifiers
1512   * cleaned up code flushing in optimization: Function calls which
1513     should signal errors for safety purposes (e.g. which ANSI says
1514     should signal errors when their arguments are of incorrect type)
1515     are no longer optimized away.
1516   * added new extension: SB-DEBUG:BACKTRACE-AS-LIST
1517   * incremented fasl file version number, because changes in the
1518     implementation of sequence functions like COERCE caused 
1519     internal utility functions like COERCE-TO-SIMPLE-VECTOR (used
1520     in old inline expansions) to become undefined. (Actually these
1521     changes were later undone, so we might very well be binary
1522     compatible with 0.7.7 after all, but leaving the version number
1523     incremented seemed like the simplest and most conservative
1524     thing to do.)
1525
1526 changes in sbcl-0.7.7 relative to sbcl-0.7.6:
1527   * An alpha-quality port to the parisc architecture running Linux,
1528     based on the old CMUCL backend, has been made.  This, even more so
1529     than the other backends, should be considered still a work in
1530     progress; known problems include that the Linux kernel in 64-bit
1531     mode does not propagate the correct sigcontext structure to
1532     userspace, and consequently SBCL on a parisc64 kernel will not
1533     work yet.
1534   * fixed bug 189: The compiler now respects NOTINLINE declarations for
1535     functions declared in FLET and LABELS. (I.e. "LET conversion" is
1536     suppressed.) Also now that the compiler is looking at declarations
1537     in the environment, it checks optimization declarations as well,
1538     and suppresses inlining when (> DEBUG SPEED).
1539   * More fixes have been made to treatment of floating point exception
1540     treatment and other Unix signals.  In particular, floating point
1541     exceptions no longer cause Bus errors on the SPARC/Linux platform.
1542   * The detection and handling of control stack exhaustion (infinite
1543     or very deeply nested recursion) has changed.  Stack exhaustion
1544     detection is now done by write-protecting pages at the OS level
1545     and applies at all optimization settings; when found, a
1546     SB-KERNEL:CONTROL-STACK-EXHAUSTED condition (subclass of
1547     STORAGE-CONDITION) is signalled, so stack exhaustion can no longer
1548     be caught using IGNORE-ERRORS.
1549   * Bugs 65, 70, and 109 fixed: The compiler now preserves invariants
1550     correctly when transforming recursive LABELS functions to LETs.
1551     (thanks to Alexey Dejneka)
1552   * Bug 48a./b. fixed: SYMBOL-MACROLET now refuses to bind symbols
1553     that are names of constants or global variables.
1554   * Bug fix: DEFINE-ALIEN-ROUTINE now declaims the correct FTYPE for
1555     alien routines with docstrings.
1556   * Bug 184 fixed: Division of ratios by the integer 0 now signals an
1557     error of type DIVISION-BY-ZERO. (thanks to Wolfhard Buss and
1558     Raymond Toy)
1559   * Bug fix: Errors in PARSE-INTEGER are now of type PARSE-ERROR.
1560     (thanks to Eric Marsden)
1561   * Bug fix: COERCE to (COMPLEX FLOAT) of rationals now returns an
1562     object of type (COMPLEX FLOAT). (thanks to Wolfhard Buss)
1563   * Bug fix: The SPARC backend can now compile functions involving
1564     LOGAND and stack-allocated arguments. (thanks to Raymond Toy)
1565   * Bug fix: We no longer segfault on passing a non-FILE-STREAM stream
1566     to a functions expecting a PATHNAME-DESIGNATOR.
1567   * Bug fix: DEFGENERIC now enforces the ANSI restrictions on its
1568     lambda lists. (thanks to Alexey Dejneka)
1569   * Bug fix: changed encoding of PCL's internal MAKE-INSTANCE
1570     functions so that EXPORTing the name of the class doesn't cause
1571     MAKE-INSTANCE functions from earlier DEFCLASSes to get lost (thanks
1572     to Antonio Martinez for reporting this)
1573   * Bug 192 fixed: The internal primitive DATA-VECTOR-REF can now be
1574     constant-folded without failing an assertion. (thanks to Einar
1575     Floystad Dorum for reporting this)
1576   * Bugs 123 and 165 fixed: array specializations on as-yet-undefined
1577     types are now dealt with more correctly by the compiler.
1578   * Minor incompatible change: COMPILE-FILE-PATHNAME now merges its
1579     OUTPUT-FILE argument with its INPUT-FILE argument, resulting in
1580     behaviour analogous to RENAME-FILE.  This puts its behaviour more
1581     in line with ANSI's wording on COMPILE-FILE-PATHNAME. (thanks to
1582     Marco Antinotti)
1583   * The fasl file version number has changed again. (because of the
1584     bug fix involving the names of PCL MAKE-INSTANCE functions)
1585
1586 changes in sbcl-0.7.6 relative to sbcl-0.7.5:
1587   * bug fix: Floating point exceptions are treated much more
1588     consistently on the x86/Linux and PPC/Linux platforms.
1589   * Array initialization with :INITIAL-ELEMENT is now much faster for
1590     cases when the compiler cannot open code the array creation, but
1591     does know what the UPGRADED-ARRAY-ELEMENT-TYPE will be. General
1592     array accesses have also seen a speed increase.
1593   * bug fix: LOAD :IF-DOES-NOT-EXIST NIL now works when file type is
1594     specified. (This was at the root of some bad interactions between
1595     SBCL and ILISP: thanks to Gregory Wright for diagnosing this and
1596     reporting the bug.)
1597   * bug fix: Internal error arguments for undefined functions are now
1598     computed correctly on the PPC/Linux platform.
1599   * bug fix: Bad &REST syntax is now checked correctly. (thanks to 
1600     Raymond Toy's patch for CMU CL)
1601   * Support for the Solaris 9 operating environment has been included
1602     (thanks to Daniel Merritt)
1603   * A very ugly but hopefully complete draft of the missing FFI chapter
1604     of the manual has been created by reformatting the corresponding
1605     CMU CL manual chapter into (currently very ugly and incoherent)
1606     DocBook and bringing it up to date for SBCL behavior. Thus, the
1607     manual is now essentially complete, at least by my extreme
1608     once-and-only-once standards, whereby it's acceptable to refer to
1609     the doc strings of SB-EXT functions as the primary documentation.
1610   * The fasl file version number has changed again, due to cleanup of
1611     (user-invisible) bitrotted stuff. (E.g. *!INITIAL-FDEFN-OBJECTS*
1612     is no longer a static symbol.)
1613
1614 changes in sbcl-0.7.5 relative to sbcl-0.7.4:
1615   * SBCL now builds with OpenMCL (version 0.12) as the
1616     cross-compilation host; also, more progress has been made toward
1617     bootstrapping under CLISP.
1618   * SBCL now runs on the Tru64 (aka OSF/1) operating system on the
1619     Alpha architecture.
1620   * bug 158 fixed: The compiler can now deal with integer loop
1621     increments different from 1; fixing this turned out also to fix
1622     bug 164.
1623   * bug 169 fixed: no more bogus warnings about using lexical bindings
1624     despite the presence of perfectly good SPECIAL declarations (thanks
1625     to David Lichteblau)
1626   * bug 175 fixed: CHANGE-CLASS is now more ANSI-conforming,
1627     accepting initargs. (thanks to Espen Johnsen and Pierre Mai)
1628   * bug 179 fixed: DIRECTORY can now deal with filenames with pattern
1629     characters in them.
1630   * bug 180 fixed: Method combination specifications no longer ignore
1631     the :MOST-SPECIFIC-LAST option. (thanks to Pierre Mai)
1632   * bug fix: Structure type predicate functions now check their argument
1633     count as they should.
1634   * bug fix: Classes with :METACLASS STRUCTURE-CLASS now print
1635     correctly. (thanks to Pierre Mai)
1636   * minor incompatible change: The --noprogrammer option is deprecated
1637     in favor of the new --disable-debugger option, which is very similar.
1638     (The major difference is that it takes effect at a slightly different
1639     time at startup, causing handling of errors in --sysinit and
1640     --userinit files will be affected differently.) The
1641     SB-EXT:DISABLE-DEBUGGER and SB-EXT:ENABLE-DEBUGGER functions have
1642     been added to allow this functionality to be controlled from ordinary
1643     Lisp code. (ENABLE-DEBUGGER should help people like the Debian
1644     maintainers, who might want to run non-interactive scripts to
1645     build SBCL cores which will later be used interactively.)
1646   * minor incompatible change: The LOAD function no longer, when given
1647     a wild pathname to load, loads all files matching that pathname.
1648     Instead, an error of type FILE-ERROR is signalled.
1649
1650 changes in sbcl-0.7.4 relative to sbcl-0.7.3:
1651   * bug 147 fixed: The compiler preserves its block link/count
1652     invariants more correctly now so that it doesn't crash. (thanks
1653     to Alexey Dejneka)
1654   * Dynamic loading of object files in OpenBSD is now supported. (thanks
1655     to Pierre Mai)
1656   * COMPILE now works correctly on macros. (thanks to Matthias Hoelzl)
1657   * GET-MACRO-CHARACTER and SET-MACRO-CHARACTER now represent
1658     no-value-for-this-character as NIL (as specified by ANSI).
1659   * HOST-NAMESTRING on physical pathnames now returns a string that is
1660     valid as a host argument to MERGE-PATHNAMES and to MAKE-PATHNAME.
1661     (thanks to Christophe Rhodes)
1662   * The Alpha port handles icache flushing more correctly. (thanks to
1663     Dan Barlow)
1664   * More progress has been made toward bootstrapping under CLISP. (thanks
1665     to Christophe Rhodes)
1666   * The fasl file format has changed again, because dynamic loading
1667     on OpenBSD (which has non-ELF object files) motivated some cleanups
1668     in the way that foreign symbols are transformed and passed around.
1669   * minor incompatible change: The ASCII RUBOUT character, (CHAR-CODE 127),
1670     is no longer treated as whitespace by the reader, but instead as
1671     an ordinary character. Thus e.g. (READ-FROM-STRING "A\7fB") returns
1672     |A\7fB|, instead of A as it used to.
1673
1674 changes in sbcl-0.7.3 relative to sbcl-0.7.2:
1675   * ANSI's DEFINE-SYMBOL-MACRO is now supported. (thanks to Nathan
1676     Froyd porting CMU CL code originally by Douglas Thomas Crosher)
1677   * SBCL now runs on the PPC archtiecture under Linux. It actually did
1678     this as of 0.7.1.45, but was left out of the previous news section
1679     (thanks to Dan Barlow)
1680   * SBCL now runs on the Solaris operating system on SPARC architectures
1681     (thanks to Christophe Rhodes's port of the CMUCL runtime)
1682   * cleanups to the runtime on SPARC, both Linux and Solaris, and for
1683     gcc>=3 (thanks to Nathan Froyd and Ingvar Mattsson)
1684   * SPARC backend cleanups, allowing builds of cores optimized for V8
1685     and V9 SPARCS, and also emission of code targeted to a particular
1686     backend chosen at runtime (thanks to Christophe Rhodes and Raymond
1687     Toy)
1688   * SBCL is closer to bootstrapping under CLISP, thanks to various
1689     fixes by Christophe Rhodes.
1690   * The fasl file format has changed again, to allow the compiler's
1691     INFO database to support symbol macros.
1692   * The user manual (in doc/) is formatted into HTML more nicely.
1693     (thanks to coreythomas)
1694   * The system is smarter about SUBTYPEP relationships, especially
1695     those involving NOT types (including types such as ATOM which are
1696     represented internally using NOT types). Thus SUBTYPEP is less
1697     likely to return (VALUES NIL NIL) in general, and in particular
1698     bugs 58 and (the remaining bits of) bug 50 are fixed. (thanks to
1699     Christophe Rhodes)
1700   * The fasl file format has changed again, because the internal
1701     representation of types now includes a new slot to support the new
1702     SUBTYPEP-of-NOT-types logic.
1703   * (not a change in the main branch of SBCL, but a related prototype
1704     which can hopefully be merged into the main branch of SBCL in the
1705     future:) Brian Spilsbury has produced a Unicode-enabled variant of
1706     sbcl-0.7.0, available as a patch against sbcl-0.7.0 at
1707       <http://designix.com.au/brian/SBCL/sbcl-0.7.0-unicode.p0.gz>.
1708   * Bug 151 fixed: GET-DISPATCH-MACRO-CHAR now returns NIL for undefined
1709     dispatch macro character combinations. (thanks to Alexey Dejneka)
1710   * Bugfix in PARSE-NAMESTRING: we now correctly parse unix namestrings 
1711     that superficially look like logical namestrings correctly.
1712   * USER-HOMEDIR-PATHNAME now returns a (physical) pathname that SBCL
1713     can deal with.
1714   * Bugfix in DEFSTRUCT: BOA constructor lambda lists now accept (name
1715     default supplied-p) for &optional and &key arguments. (thanks to
1716     Martin Atzmueller)
1717
1718 changes in sbcl-0.7.2 relative to sbcl-0.7.1:
1719   * incompatible change: The compiler is now less aggressive about
1720     tail call optimization, doing it only when (> SPACE DEBUG) or
1721     (> SPEED DEBUG). (This is an incompatible change because there are
1722     programs which relied on the old CMU-CL-style behavior to optimize
1723     away their unbounded recursion which will now die of stack overflow.)
1724   * minor incompatible change: The default BYTES-CONSED-BETWEEN-GCS
1725     for non-GENCGC systems has been increased to 20M (since that
1726     seems much closer to the likely performance optimum for modern
1727     systems than the old 4M value was)
1728   * minor incompatible change: new larger values for *DEBUG-PRINT-LENGTH*
1729     and *DEBUG-PRINT-LEVEL*
1730   * SBCL runs on SPARC systems now. (thanks to Christophe Rhodes' port
1731     of CMU CL's support for SPARC, and various endianness and other 
1732     SBCL portability fixes due to Christophe Rhodes and Dan Barlow)
1733   * new syntactic sugar for the Unix command line: --load foo.bar is now
1734     an alternate notation for --eval '(load "foo.bar")'.
1735   * bug fixes:
1736     ** The system now detects stack overflow and handles it gracefully,
1737        at least for (OR (> SAFETY (MAX SPEED SPACE)) (= SAFETY 3))
1738        optimization settings. (This is a good thing in general, and
1739        its introduction in this version should be particularly timely
1740        for anyone whose code fails because of suppression of tail
1741        recursion!)
1742     ** The system now hunts for the C variable "environ" in a more
1743        devious way, to avoid segfaults when the C library version differs
1744        between compile time and run time. (thanks to Christophe Rhodes)
1745     ** INTEGER-valued CATCH tags now work. (thanks to Alexey Dejneka,
1746        and also to Christophe Rhodes for porting the fix to non-X86 CPUs)
1747     ** The compiler no longer issues bogus style warnings for undefined
1748        classes in the same source file as the DEFCLASSes which defined
1749        them. (thanks to Stig E Sandoe for reporting and Martin Atzmueller
1750        for fixing this)
1751     ** fixes in CONDITION class precedence list for undefined function
1752        errors (thanks to Alexei Dejneka)
1753     ** *DEFAULT-PATHNAME-DEFAULTS* is used more consistently and 
1754        correctly. (thanks to Dan Barlow)
1755     ** portability fixes aiming at bootstrapping under CLISP (thanks
1756        to Dave McDonald and Christophe Rhodes)
1757     ** FORMAT fixes (thanks to Robert Strandh and Dan Barlow)
1758     ** fixes in type translation and and type inference (thanks to
1759        Christophe Rhodes)
1760     ** fixes to optimizer internal errors (thanks to Alexei Dejneka)
1761     ** various fixes in the new ports (thanks to Dan Barlow)
1762   * several changes related to debugging:
1763     ** suppression of tail recursion, as noted above
1764     ** stack overflow detection, as noted above
1765     ** The default implementation of TRACE has changed. :ENCAPSULATE T
1766        is now the default. (For some time encapsulation has been more
1767        reliable than the breakpoint-based :ENCAPSULATE NIL
1768        implementation, at least on X86 systems; and I just noticed that
1769        encapsulation also seems closer to the spirit of the ANSI
1770        specification.)
1771
1772 changes in sbcl-0.7.1 relative to sbcl-0.7.0:
1773 * mostly bug fixes:
1774   ** SB-ALIEN:LOAD-FOREIGN and SB-ALIEN:LOAD-1-FOREIGN are set
1775      up properly again. (There was a packaging bug in 0.7.0 which
1776      left their definitions in SB-SYS::LOAD-FOREIGN and 
1777      SB-SYS::LOAD-1-FOREIGN. LOAD-FOREIGN and LOAD-1-FOREIGN are
1778      vital for most things which interface to C-level interfaces,
1779      like extensions working with sockets or databases or
1780      Perl-compatible regexes or whatever, and the need to fix
1781      this bug is the main reason that 0.7.1 was released so
1782      soon after 0.7.0.)
1783   ** DEFGENERIC is now choosier about the methods it redefines, so that
1784      reLOADing a previously-LOADed file containing DEFGENERICs does
1785      the right thing now. Thus, the Lispy edit/reLOAD-a-little/test
1786      cycle now works as it should. (thanks to Alexey Dejneka)
1787   ** Bug 106 (types (COMPLEX FOO) where FOO is an obscure type) was
1788      fixed by Christophe Rhodes. (He actually submitted this patch
1789      months ago, and I delayed until after 0.7.0.)
1790   ** Bug 111 (internal compiler confusion about runtime checks on
1791      FUNCTION types) was fixed by Alexey Dejneka.
1792 * Some internal cleanups (getting rid of variables which aren't
1793   needed now that the byte interpreter is gone) caused the fasl
1794   file format number to change again.
1795
1796 changes in sbcl-0.7.0 relative to sbcl-0.6.13:
1797 * major incompatible change: The default fasl file extension, i.e. the
1798   default extension for files produced by COMPILE-FILE, has changed
1799   to ".fasl", for all architectures. (No longer ".x86f" and ".axpf".) 
1800 * compiler changes:
1801   ** There are many changes in the implementation of the compiler.
1802      SBCL is now essentially a compiler-only implementation of ANSI
1803      Common Lisp. EVAL still "interprets" a few special cases, but 
1804      almost all the interesting cases are handled by creating
1805      a LAMBDA expression, calling COMPILE on it, then calling 
1806      FUNCALL on the result.
1807   ** The EVAL-WHEN code has been rewritten to be ANSI-compliant, and
1808      various related bugs (IR1-1, IR1-2, IR1-3, IR1-3a) have gone away.
1809      Since the code is newer, there might still be some new bugs
1810      (though not as many as before Martin Atzmueller's fixes:-). But 
1811      the new code is substantially simpler and clearer, and hopefully
1812      any remaining bugs will be simpler, less fundamental, and more
1813      fixable then the bugs in the old code.
1814   ** The revised compiler is still a little unsteady on its feet.
1815      In particular,
1816      *** The debugging information it produces (particularly the names
1817          of FUNCTION objects) is sometimes much less useful than what
1818          the old compiler produced.
1819      *** The support for inlining FOO when you (DECLAIM (INLINE FOO))
1820          then do (DEFUN FOO ..) in a non-null lexical environment (e.g.
1821          within a MACROLET) has been temporarily weakened.
1822   ** There are new compiler optimizations for various functions:
1823      *** the sequence functions FIND, POSITION, FIND-IF, POSITION-IF,
1824          FIND-IF-NOT, POSITION-IF-NOT, and FILL
1825      *** the math functions TRUNCATE, FLOOR, and CEILING
1826      *** the function-of-all-trades COERCE
1827      Mostly these should be transparent, but there's one
1828      potentially-annoying problem (bug 117): when the compiler
1829      inline-expands a function and does type analysis on the result,
1830      it can create control paths which have type mismatches, and
1831      when it can't prove that those control paths aren't taken,
1832      it will issue WARNINGs about the type mismatches. This is 
1833      a particular problem in practice for the new sequence functions.
1834      It's not clear how this should be fixed, and for now, a
1835      workaround is given in the entry for 117 in the BUGS file.
1836   ** (Because of the interaction between the two previous items --
1837      occasional inlining problems and new inline expansions -- some
1838      of the new sequence function optimizations won't really kick in
1839      completely until debugging information, and then inlining, are
1840      straightened out in some future version.)
1841 * minor incompatible changes:
1842   ** As part of a bug fix by Christophe Rhodes to DIRECTORY behavior,
1843      DIRECTORY no longer implicitly promotes NIL slots of its
1844      pathname argument to :WILD. In particular, when you ask for the
1845      contents of a directory (which you used to be able to do without
1846      explicit wildcards, e.g. (DIRECTORY "/tmp/")) you now need to use
1847      explicit wildcards, e.g. (DIRECTORY "/tmp/*.*").
1848   ** changes in behavior that ANSI explicitly defines to be
1849      implementation dependent:
1850      *** The new compiler-only implementation still conforms with ANSI,
1851          but acts a little different than before. Besides the obvious
1852          changes in performance tradeoffs (that the cost per form passed
1853          to EVAL has gone up, and the cost per form executed by EVAL
1854          has gone down), the behavior of the system changes a little
1855          because there are no longer any interpreted function objects.
1856          COMPILED-FUNCTION-P is now synonymous with FUNCTIONP, and
1857          e.g. doing COMPILE on the output of interactive DEFUN is
1858          now a no-op.
1859      *** The value of INTERNAL-TIME-UNITS-PER-SECOND has been increased
1860          from 100 to 1000.
1861      *** The default for the USE list in MAKE-PACKAGE and DEFPACKAGE
1862          has changed from (:CL) to NIL.
1863      *** The CHAR-NAME of unprintable ASCII characters which, unlike
1864          e.g. #\Newline and #\Tab, don't have names specified in the
1865          ANSI Common Lisp standard, is now based on their ASCII symbolic
1866          names (#\Nul, #\Soh, #\Stx, etc.) The old CMU-CL-style names
1867          (#\Null, #\^a, #\^b, etc.) are still accepted by NAME-CHAR, but
1868          are no longer used for output.
1869   ** changes in internal implementation constants:
1870      *** The default value of *BYTES-CONSED-BETWEEN-GCS* has doubled, to
1871          4 million. (If your application spends a lot of time GCing and
1872          you have a lot of RAM, you might want to experiment with
1873          increasing it even more.)
1874   ** The SB-C-CALL package has been merged into the SB-ALIEN package.
1875      However, almost all old code should still continue to work without
1876      immediate update, as SB-C-CALL is now a (deprecated) nickname
1877      for SB-ALIEN.
1878   ** Old operator names in the style DEF-FOO are now deprecated in
1879      favor of new corresponding names DEFINE-FOO, for consistency with
1880      the naming convention used in the ANSI standard (DEFSTRUCT, DEFVAR,
1881      DEFINE-CONDITION, DEFINE-MODIFY-MACRO..). This mostly affects
1882      internal symbols, but a few supported extensions like
1883      SB-ALIEN:DEF-ALIEN-FUNCTION are also affected. (So e.g.
1884      DEF-ALIEN-FUNCTION becomes DEFINE-ALIEN-FUNCTION.)
1885   ** The debugger prompt sequence now goes "5]", "5[2]", "5[3]",
1886      etc. as you get deeper into recursive calls to the debugger
1887      command loop, instead of the old "5]", "5]]", "5]]]"
1888      sequence. (I was motivated to do this when squabbles between
1889      ILISP and SBCL left me very deeply nested in the debugger. In the
1890      short term, this change will probably provoke more ILISP/SBCL 
1891      squabbles, but hopefully it will be an improvement in the long run.)
1892   ** SB-ALIEN:DEFINE-ALIEN-FUNCTION (also known by the old deprecated
1893      name DEF-ALIEN-FUNCTION) now does DECLAIM FTYPE for the defined
1894      function, since declaiming return types involving aliens is
1895      (1) annoyingly messy to do by hand and (2) vital to efficient
1896      compilation of code which calls such functions.
1897   ** SB-ALIEN:LOAD-FOREIGN and SB-ALIEN:LOAD-1-FOREIGN are no
1898      longer reexported by the SB-EXT package. They're solely useful
1899      for alien code, so it seems more logical that you should get
1900      them from the SB-ALIEN package, not in SB-EXT.
1901   ** :SB-CONSTRAIN-FLOAT-TYPE, :SB-PROPAGATE-FLOAT-TYPE, and
1902      :SB-PROPAGATE-FUN-TYPE are no longer considered to be optional
1903      features. Instead, the code that they used to control is always
1904      built into the system.
1905 * many other bug fixes
1906   ** DEFSTRUCT and DEFCLASS have been substantially updated to take
1907      advantage of the new EVAL-WHEN stuff and to clean them up in 
1908      general, and they are now more ANSI-compliant in a number of
1909      ways. Martin Atzmueller is responsible for a lot of this.
1910   ** Besides the cleanups discussed above, Martin Atzmueller fixed
1911      several other bugs:
1912      *** fixes in READ-SEQUENCE and WRITE-SEQUENCE
1913      *** correct ERROR type for various file operations
1914      *** some fixes for Lisp streams
1915      *** DEFMETHOD syntax checking
1916      *** changing old weird representation of debug information as
1917          strings (which, among their other deficiencies, don't transform
1918          correctly when you rename packages, and don't change their
1919          print representation when you change things like *PACKAGE*
1920          and *PRINT-LENGTH*) to symbols and lists of symbols
1921      He also made several improvements and fixed several bugs in DESCRIBE.
1922   ** Alexey Dejneka fixed many bugs, including classic bugs and bugs he
1923      discovered himself:
1924      *** misbehavior of WRITE-STRING/WRITE-LINE
1925      *** LOOP over keys of a hash table, LOOP bugs 49b and 81 and 103,
1926          and several other LOOP problems as well
1927      *** DIRECTORY when similar filenames are present
1928      *** DEFGENERIC with :METHOD options
1929      *** bug 126, in (MAKE-STRING N :INITIAL-ELEMENT #\SPACE))
1930      *** bug in the optimization of ARRAY-ELEMENT-TYPE
1931      *** argument ordering in FIND with :TEST option
1932      *** mishandled package designator argument in APROPOS-LIST
1933      *** various problems in the backquote readmacro
1934      *** a bug in APROPOS
1935      *** probably some others that I'm not describing very well here,
1936          since the CVS log documents them by reference to sbcl-devel
1937          messages, and the SourceForge archives aren't working well.:-(
1938   ** Dan Barlow improved the Alpha port (and is making progress on the
1939      PPC port, for those of you who think different).
1940   ** Besides the DIRECTORY fixes and changes mentioned elsewhere,
1941      Christophe Rhodes cleaned up the system self-test scripts (in tests/*),
1942      contributed the optimization of FIND-IF-NOT and POSITION-IF-NOT, and
1943      continues to work on the SPARC port (for those of you in a position
1944      to look down upon our little PC-compatible boxes from a great height). 
1945   ** PPRINT-LOGICAL-BLOCK now copies the *PRINT-LINES* value on entry
1946      and uses that copy, rather than the current dynamic value, when
1947      it's trying to decide whether to truncate output. Thus e.g.
1948        (let ((*print-lines* 50))
1949          (pprint-logical-block (stream nil)
1950            (dotimes (i 10)
1951              (let ((*print-lines* 8))
1952                (print (aref possiblybigthings i) stream)))))
1953      should now truncate the logical block only at 50 lines, instead of
1954      often truncating it at 8 lines, as it did before.
1955 * The doc/cmucl/ directory, containing old CMU CL documentation
1956   from the time of the fork, is no longer part of the base system.
1957   SourceForge has shut down its anonymous FTP service, and with it
1958   my original plan for distributing the old CMU CL documentation
1959   there. For now, if you need these files you can download an old
1960   SBCL source release and extract them from it.
1961 * The fasl file version number changed again, for dozens of reasons,
1962   some of which are apparent above.
1963
1964 changes in sbcl-0.6.13 relative to sbcl-0.6.12:
1965 * a port to the Compaq/DEC Alpha CPU, thanks to Dan Barlow
1966 * Martin Atzmueller ported Tim Moore's marvellous CMU CL DISASSEMBLE
1967   patch, so that DISASSEMBLE output is much nicer.
1968 * The code in the SB-PROFILE package now seems reasonably stable.
1969   I still haven't decided what the final interface should look like
1970   (I'd like PROFILE to interact cleanly with TRACE, since both
1971   facilities use function encapsulation) but if you have a need
1972   for profiling now, you can probably use it successfully with
1973   the current CMU-CL-style interface.
1974 * Pathnames and *DEFAULT-DIRECTORY-DEFAULTS* are much more
1975   ANSI-compliant, thanks to various fixes and tests from Dan Barlow.
1976   Also, at Dan Barlow's suggestion, TRUENAME on a dangling symbolic
1977   link now returns the dangling link itself, and for similar
1978   reasons, TRUENAME on a cyclic symbolic link returns the cyclic
1979   link itself. (In these cases the old code signalled an error and
1980   looped endlessly, respectively.) Thus, DIRECTORY now works even
1981   in the presence of dangling and cyclic symbolic links.
1982 * Compiler trace output (the :TRACE-FILE option to COMPILE-FILE)
1983   is now a supported extension again, since the consensus on
1984   sbcl-devel was that it can be useful for ordinary development
1985   work, not just for debugging SBCL itself.
1986 * The default for SB-EXT:*DERIVE-FUNCTION-TYPES* has changed to
1987   NIL, i.e. ANSI behavior, i.e. the compiler now recognizes
1988   that currently-defined functions might be redefined later with 
1989   different return types. 
1990 * Hash tables can be printed readably, as inspired by CMU CL code
1991   of Eric Marsden and SBCL code of Martin Atzmueller.
1992 * better error handling in CLOS method combination, thanks to 
1993   Martin Atzmueller porting Pierre Mai's CMU CL patches
1994 * more overflow fixes for >16Mbyte I/O buffers
1995 * A bug in READ has been fixed, so that now a single Ctrl-D
1996   character suffices to cause end-of-file on character streams.
1997   In particular, now you only need one Ctrl-D at the command
1998   line (not two) to exit SBCL.
1999 * fixed bug 26: ARRAY-DISPLACEMENT now returns (VALUES NIL 0) for 
2000   undisplaced arrays.
2001 * fixed bug 107 (reported as a CMU CL bug by Erik Naggum on 
2002   comp.lang.lisp 2001-06-11): (WRITE #*101 :RADIX T :BASE 36) now
2003   does the right thing.
2004 * The implementation of some type tests, especially for CONDITION
2005   types, is now tidier and maybe faster, due to CMU CL code
2006   originally by Douglas Crosher, ported by Martin Atzmueller.
2007 * Some math functions have been fixed, and there are new
2008   optimizers for deriving the types of COERCE and ARRAY-ELEMENT-TYPE,
2009   thanks to Raymond Toy's work on CMU CL, ported by Martin Atzmueller.
2010 * (There are also some new optimizers in contrib/*-extras.lisp. Those
2011   aren't built into sbcl-0.6.13, but are a sneak preview of what's
2012   likely to be built into sbcl-0.7.0.)
2013 * A bug in COPY-READTABLE was fixed. (Joao Cachopo's patch to CMU
2014   CL, ported to SBCL by Martin Atzmueller)
2015 * DESCRIBE now gives more information in some cases. (Pierre Mai's
2016   patch to CMU CL, ported to SBCL by Martin Atzmueller)
2017 * Martin Atzmueller and Bill Newman fixed some bugs in INSPECT.
2018 * There's a new slam.sh hack to shorten the edit/compile/debug
2019   cycle for low-level changes to SBCL itself, and a new
2020   :SB-AFTER-XC-CORE target feature to control the generation of
2021   the after-xc.core file needed by slam.sh.
2022 * minor incompatible change: The ENTRY-POINTS &KEY argument to 
2023   COMPILE-FILE is no longer supported, so that now every function
2024   gets an entry point, so that block compilation looks a little
2025   more like the plain vanilla ANSI section 3.2.2.3 scheme.
2026 * minor incompatible change: SB-EXT:GET-BYTES-CONSED now
2027   returns the number of bytes consed since the system started,
2028   rather than the number consed since the first time the function
2029   was called. (The new definition parallels ANSI functions like
2030   CL:GET-INTERNAL-RUN-TIME.)
2031 * minor incompatible change: The old CMU-CL-style DIRECTORY options,
2032   i.e. :ALL, :FOLLOW-LINKS, and :CHECK-FOR-SUBDIRS, are no longer
2033   supported. Now DIRECTORY always does the abstract Common-Lisp-y
2034   thing, i.e. :ALL T :FOLLOW-LINKS T :CHECK-FOR-SUBDIRS T.
2035 * Fasl file version numbers are now independent of the target CPU,
2036   since historically most system changes which required version
2037   number changes have affected all CPUs equally. Similarly, 
2038   the byte fasl file version is now equal to the ordinary
2039   fasl file version.
2040
2041 changes in sbcl-0.6.12 relative to sbcl-0.6.11:
2042 * incompatible change: The old SB-EXT:OPTIMIZE-INTERFACE declaration
2043   is no longer recognized. I apologize for this, because it was
2044   listed in SB-EXT as a supported extension, but I found that
2045   its existing behavior was poorly specified, as well as incorrectly
2046   specified, and it looked like too much of a mess to straighten it
2047   out. I have enough on my hands trying to get ANSI stuff to work..
2048 * many patches ported from CMU CL by Martin Atzmueller, with 
2049   half a dozen bug fixes in pretty-printing and the debugger, and
2050   half a dozen others elsewhere
2051 * fixed bug 13: Floating point infinities are now supported again.
2052   They might still be a little bit flaky, but thanks to bug reports
2053   from Nathan Froyd and CMU CL patches from Raymond Toy they're not
2054   as flaky as they were.
2055 * The --noprogrammer command line option is now supported. (Its
2056   behavior is slightly different in detail from what the old man
2057   page claimed it would do, but it's still appropriate under the
2058   same circumstances that the man page talks about.)
2059 * The :SB-PROPAGATE-FLOAT-TYPE and :SB-PROPAGATE-FUN-TYPE features
2060   are now supported, and enabled by default. Thus, the compiler can
2061   handle many floating point and complex operations much less
2062   inefficiently. (Thus e.g. you can implement a complex FFT
2063   without consing!)
2064 * The compiler now detects type mismatches between DECLAIM FTYPE 
2065   and DEFUN better, and implements CHECK-TYPE more correctly, and
2066   SBCL builds under CMU CL again despite its non-ANSI EVAL-WHEN,
2067   thanks to patches from Martin Atzmueller.
2068 * various fixes to make the cross-compiler more portable to
2069   ANSI-conforming-but-different cross-compilation hosts (notably
2070   Lispworks for Windows, following bug reports from Arthur Lemmens)
2071 * A bug in READ-SEQUENCE for CONCATENATED-STREAM, and a gross
2072   ANSI noncompliance in DEFMACRO &KEY argument parsing, have been
2073   fixed thanks to Pierre Mai's CMU CL patches.
2074 * fixes to keep the system from overflowing internal counters when
2075   it tries to use i/o buffers larger than 16M bytes
2076 * fixed bug 45a: Various internal functions required to support
2077   complex special functions have been merged from CMU CL sources.
2078   (When I was first setting up SBCL, I misunderstood a compile-time
2079   conditional #-OLD-SPECFUN, and so accidentally deleted them.)
2080 * improved support for type intersection and union, fixing bug 12
2081   (e.g., now (SUBTYPEP 'KEYWORD 'SYMBOL)=>T,T) and some other
2082   more obscure bugs as well
2083 * some steps toward byte-compiling non-performance-critical
2084   parts of the system, courtesy of patches from Martin Atzmueller
2085 * Christophe Rhodes has made some debian packages of sbcl at
2086   <http://www-jcsu.jesus.cam.ac.uk/ftp/pub/debian/lisp>.
2087   From his sbcl-devel e-mail of 2001-04-08 they're not completely
2088   stable, but are nonetheless usable. When he's ready, I'd be happy
2089   to add them to the SourceForge "File Releases" section. (And if
2090   anyone wants to do RPMs or *BSD packages, they'd be welcome too.)
2091 * new fasl file format version number (because of changes in 
2092   internal representation of (OR ..) types to accommodate the new
2093   support for (AND ..) types, among other things)
2094
2095 changes in sbcl-0.6.11 relative to sbcl-0.6.10:
2096 * Martin Atzmueller pointed out that bugs #9 and #25 are gone in
2097   current SBCL.
2098 * bug 34 fixed by Martin Atzmueller: dumping/loading instances works
2099   better
2100 * fixed bug 40: TYPEP, SUBTYPEP, UPGRADED-ARRAY-ELEMENT-TYPE, 
2101   and UPGRADED-COMPLEX-PART-TYPE now work better with of compound
2102   types built from undefined types, e.g. '(VECTOR SOME-UNDEF-TYPE).
2103 * DESCRIBE now works on structure objects again.
2104 * Most function call argument type mismatches are now handled as
2105   STYLE-WARNINGs instead of full WARNINGs, since the compiler doesn't
2106   know whether the function will be redefined before the call is
2107   executed. (The compiler could flag local calls with full WARNINGs,
2108   as per the ANSI spec "3.2.2.3 Semantic Constraints", but right now
2109   it doesn't keep track of enough information to know whether calls
2110   are local in this sense.)
2111 * Compiler output is now more verbose, with messages truncated
2112   later than before. (There should be some supported way for users
2113   to override the default verbosity, but I haven't decided how to 
2114   provide it yet, so this behavior is still controlled by the internal
2115   SB-C::*COMPILER-ERROR-PRINT-FOO* variables in
2116   src/compiler/ir1util.lisp.)
2117 * Fasl file format version numbers have increased again, because
2118   support for the Gray streams extension changes the layout of the
2119   system's STREAM objects.
2120 * The Gray subclassable streams extension now works, thanks to a 
2121   patch from Martin Atzmueller.
2122 * The full LOAD-FOREIGN extension (not just the primitive
2123   LOAD-FOREIGN-1) now works, thanks to a patch from Martin Atzmueller.
2124 * The default behavior of RUN-PROGRAM has changed. Now, unlike CMU CL
2125   but like most other programs, it defaults to copying the Unix
2126   environment from the original process instead of starting the
2127   new process in an empty environment.
2128 * Extensions which manipulate the Unix environment now support
2129   an :ENVIRONMENT keyword option which doesn't smash case or 
2130   do other bad things. The CMU-CL-style :ENV option is retained
2131   for porting convenience.
2132 * LOAD-FOREIGN (and LOAD-1-FOREIGN) now support logical pathnames,
2133   as per Daniel Barlow's suggestion and Martin Atzmueller's patch
2134
2135 changes in sbcl-0.6.10 relative to sbcl-0.6.9:
2136
2137 * A patch from Martin Atzmueller seems to have solved the SIGINT
2138   problem, and as far as we know, signal-handling now works cleanly.
2139   (If you find any new bugs, please report them!)
2140 * The system no longer defaults Lisp source file names to types
2141   ".l", ".cl", or ".lsp", but only to ".lisp". 
2142 * The compiler no longer uses special default file extensions for
2143   byte-compiled code. (The ANSI definition of COMPILE-FILE-PATHNAME
2144   seems to expect a single default extension for all compiled code,
2145   and there's no compelling reason to try to stretch the standard
2146   to allow two different extensions.) Instead, byte-compiled files
2147   default to the same extension as native-compiled files.
2148 * Fasl file format version numbers have increased again, because
2149   a rearrangement of internal implementation packages made some 
2150   dumped symbols in old fasl files unreadable in new cores.
2151 * DECLARE/DECLAIM/PROCLAIM logic is more nearly ANSI in general, with
2152   many fewer weird special cases.
2153 * Bug #17 (differing COMPILE-FILE behavior between logical and 
2154   physical pathnames) has been fixed, and some related misbehavior too,
2155   thanks to a patch from Martin Atzmueller.
2156 * Bug #30 (reader problems) is gone, thanks to a CMU CL patch
2157   by Tim Moore, ported to SBCL by Martin Atzmueller.
2158 * Martin Atzmueller fixed several filesystem-related problems,
2159   including bug #36, in part by porting CMU CL patches, which were
2160   written in part by Paul Werkowski.
2161 * More compiler warnings in src/runtime/ are gone, thanks to 
2162   more patches from Martin Atzmueller.
2163 * Martin Atzmueller pointed out that bug 37 was fixed by his patches
2164   some time ago.
2165
2166 changes in sbcl-0.6.9 relative to sbcl-0.6.8:
2167
2168 * DESCRIBE now works on CONDITION objects.
2169 * The debugger now handles errors which arise when trying to print
2170   *DEBUG-CONDITION*, so that it's less likely to fall into infinite
2171   regress.
2172 * The build system now uses an additional file, customize-target-features.lisp,
2173   to allow local modifications to the target *FEATURES* list. (The point of
2174   this is that now I can set up a custom configuration, e.g. with :SB-SHOW
2175   debugging features enabled, without having to worry about propagating it
2176   into everyone's system when I do a "cvs update".) When no
2177   customize-target-features.lisp file exists, the target *FEATURES* list
2178   should be constructed the same way as before.
2179 * fixed bugs in DEFCONSTANT ANSI-compatibility:
2180   ** DEFCONSTANT now tests reassignments using EQL, not EQUAL, in order to 
2181      warn about behavior which is undefined under the ANSI spec. Note: This
2182      is specified by ANSI, but it's not very popular with programmers.
2183      If it causes you problems, take a look at the new SB-INT:DEFCONSTANT-EQX
2184      macro in the SBCL sources for an example of a workaround which you
2185      might use to make portable ANSI-standard code which does what you want.
2186   ** DEFCONSTANT's implementation is now based on EVAL-WHEN instead of on
2187      pre-ANSI IR1 translation magic, so it does the ANSI-specified thing
2188      when it's used as a non-toplevel form. (This is required in order
2189      to implement the DEFCONSTANT-EQX macro.)
2190   ** (DEFCONSTANT X 1) (DEFVAR X) (SETF X 2) no longer "works".
2191   ** Unfortunately, non-toplevel DEFCONSTANT forms can still do some
2192      funny things, due to bugs in the implementation of EVAL-WHEN
2193      (bug #IR1-3). This probably won't be fixed until 0.7.x. (Fortunately,
2194      non-toplevel DEFCONSTANTs are uncommon.)
2195 * The core file version number and fasl file version number have been 
2196   incremented, because the old noncompliant DEFCONSTANT behavior involved
2197   calling functions which no longer exist, and because I also took the
2198   opportunity to chop an unsupported slot out of the DEBUG-SOURCE structure.
2199 * fixed bug 1 (error handling before read-eval-print loop starts), and
2200   redid debugger restarts and related debugger commands somewhat while
2201   doing so:
2202   ** The QUIT debugger command is gone, since it did something
2203      rather different than the SB-EXT:QUIT command, and since it never
2204      worked properly outside the main toplevel read/eval/print loop.
2205      Invoking the new TOPLEVEL restart provides the same functionality.
2206   ** The GO debugger command is also gone, since you can just invoke
2207      the CONTINUE restart directly instead.
2208   ** The TOP debugger command is also gone, since it's redundant with the
2209      FRAME 0 command, and since it interfered with abbreviations for the
2210      TOPLEVEL restart.
2211 * The system now recovers better from non-PACKAGE values of the *PACKAGE*
2212   variable.
2213 * The system now understands compound CONS types (e.g. (CONS FIXNUM T))
2214   as required by ANSI. (thanks to Douglas Crosher's CMU CL patches, with
2215   some porting work by Martin Atzmueller)
2216 * Martin Atzmueller reviewed the CMU CL mailing lists and came back
2217   with a boatload of patches which he ported to SBCL. Now that those
2218   have been applied,
2219   ** The system tries to make sure that its low-priority messages
2220      are prefixed by semicolons, to help people who like to use
2221      syntax highlighting in their ILISP buffer. (This patch
2222      was originally due to Raymond Toy.)
2223   ** The system now optimizes INTEGER-LENGTH better, thanks to more
2224      patches originally written by Raymond Toy.
2225   ** The compiler understands coercion between single-value and 
2226      multiple-VALUES type expressions better, getting rid of some very
2227      weird behavior, thanks to patches originally by Robert MacLachlan
2228      and Douglas Crosher.
2229   ** The system understands ANSI-style non-KEYWORD &KEY arguments in 
2230      lambda lists, thanks to a patch originally by Pierre Mai.
2231   ** The system no longer bogusly warns about "abbreviated type
2232      declarations".
2233   ** The compiler gets less confused by inlining and RETURN-FROM,
2234      thanks to some patches originally by Tim Moore.
2235   ** The system no longer hangs when dumping circular lists to fasl
2236      files, thanks to a patch originally from Douglas Crosher.
2237 * Martin Atzmueller also fixed ROOM, so that it no longer fails with an
2238   undefined function error.
2239 * gave up on fixing bug 3 (forbidden-by-ANSI warning for type mismatch
2240   in structure slot initforms) for now, documented workaround instead:-|
2241 * fixed bug 4 (no WARNING for DECLAIM FTYPE of slot accessor function)
2242 * fixed bug 5: added stubs for various Gray stream functions called
2243   in the not-a-CL:STREAM case, so that even when Gray streams aren't
2244   installed, at least appropriate type errors are generated
2245 * fixed bug 8: better reporting of various PROGRAM-ERRORs
2246 * fixed bug 9: IGNORE and IGNORABLE now work reasonably and more
2247   consistently in DEFMETHOD forms. 
2248 * removed bug 21 from BUGS, since Martin Atzmueller points out that 
2249   it doesn't seem to affect SBCL after all
2250 * The C runtime system now builds with better optimization and many
2251   fewer warnings, thanks to lots of cleanups by Martin Atzmueller.
2252
2253 changes in sbcl-0.6.8 relative to sbcl-0.6.7:
2254
2255 * The system is now under CVS at SourceForge (instead of the
2256   CVS repository on my home machine).
2257 * The new signal handling code has been tweaked to treat register
2258   contents as (UNSIGNED-BYTE 32), as the old CMU CL code did,
2259   instead of (SIGNED-BYTE 32), as the C header files have it. (Code 
2260   downstream, e.g. in debug-int.lisp, has implicit dependencies
2261   on the unsignedness of integer representation of machine words, 
2262   and that caused the system to bomb out with infinite regress
2263   when trying to recover from type errors involving signed values,
2264   e.g. (BUTLAST '(1 2 3) -1).)
2265 * (BUTLAST NIL) and (NBUTLAST NIL) now return NIL as they should.
2266   (This was one of the bugs Peter Van Eynde reported back in July.)
2267 * The system now uses code inspired by Colin Walters' O(N)
2268   implementation of MAP (from the cmucl-imp@cons.org mailing
2269   list, 2 September 2000) when it can't use a DEFTRANSFORM to
2270   inline the MAP operation, and there is more than one
2271   sequence argument to the MAP call (so that it can't just
2272   do ETYPECASE once and for all based on the type of the
2273   single sequence argument). (The old non-inline implementation
2274   of the general M-argument sequence-of-length-N case required
2275   O(M*N*N) time when any of the sequence arguments were LISTs.)
2276 * The QUIT :UNIX-CODE keyword argument has been renamed to 
2277   QUIT :UNIX-STATUS. (The old name still works, but is deprecated.)
2278 * Raymond Wiker's patches to port RUN-PROGRAM from CMU CL to SBCL
2279   have been added.
2280 * Raymond Wiker's patches to port dynamic loading from Linux to
2281   FreeBSD have been added.
2282 * The BUGS file is now more nearly up to date, thanks in large part
2283   to Martin Atzmueller's review of it.
2284 * The debugger now flushes standard output streams before it begins
2285   its output ("debugger invoked" and so forth).
2286 * The core version number and fasl file version number have both
2287   been incremented, because of incompatible changes in the layout
2288   of static symbols.
2289 * FINISH-OUTPUT is now called more consistently on QUIT. (It
2290   used to not be called for a saved Lisp image.)
2291 * Martin Atzmueller's version of a patch to fix a compiler crash,
2292   as posted on sbcl-devel 13 September 2000, has been installed.
2293 * Instead of installing Martin Atzmueller's patch for the
2294   compiler transform for SUBSEQ, I deleted the compiler transform,
2295   and transforms for some similar consing operations.
2296 * A bug in signal handling which kept TRACE from working on OpenBSD
2297   has been fixed.
2298 * added enough DEFTRANSFORMs to allow (SXHASH 'FOO) to be optimized
2299   away by constant folding
2300 * The system now defines its address space constants in one place
2301   (in the Lisp sources), and propagates them automatically elsewhere
2302   (through GENESIS and the sbcl.h file). Therefore, patching the
2303   address map is less unnecessarily tedious and error-prone. The
2304   Lisp names of address space constants have also been systematized.
2305 * CVS tags like dollar-Header-dollar have been removed from
2306   the sources, because they have never saved me trouble and
2307   they've been source of trouble working with patches and other
2308   diff-related operations.
2309 * fixed the PROG1-vs.-PROGN bug in HANDLER-BIND (reported by 
2310   ole.rohne@cern.ch on cmucl-help@cons.org 2000-10-25)
2311
2312 changes in sbcl-0.6.7 relative to sbcl-0.6.6:
2313
2314 * The system has been ported to OpenBSD.
2315 * The system now compiles with a simple "sh make.sh" on the systems
2316   that it's supported on. I.e., now you no longer need to tweak 
2317   text in the target-features.lisp-expr and symlinks in src/runtime/
2318   by hand, the make.sh takes care of it for you.
2319 * The system is no longer so grossly inefficient when compiling code
2320   involving vectors implemented as general (not simple) vectors (VECTOR T),
2321   so code which dares to use VECTOR-PUSH-EXTEND and FILL-POINTER, or
2322   which dares to use the various sequence functions on non-simple 
2323   vectors, takes less of a performance hit.
2324   * There is now a primitive type predicate VECTOR-T-P
2325     to test for the (VECTOR T) type, so that e.g.
2326         (DEFUN FOO (V) (DECLARE (TYPE (VECTOR T) V)) (AREF V 3))
2327     can now be compiled with some semblance of efficiency. (The old code
2328     turned the type declaration into a full call to %TYPEP at runtime!)
2329   * AREF on (VECTOR T) is still not fast, since it's still compiled
2330     as a full call to SB-KERNEL:DATA-VECTOR-REF, but at least the
2331     ETYPECASE used in DATA-VECTOR-REF is now compiled reasonably
2332     efficiently. (The old version made full calls to SUBTYPEP at runtime!)
2333   * (MAKE-ARRAY 12 :FILL-POINTER T) is now executed less inefficiently,
2334     without making full calls to SUBTYPEP at runtime.
2335   (Some analogous efficiency issues for non-simple vectors specialized to
2336   element types other than T, or for non-simple multidimensional arrays,
2337   have not been addressed. They could almost certainly be handled the
2338   same way if anyone is motivated to do so.)
2339 * The changes in array handling break binary compatibility, so
2340   *BACKEND-FASL-FILE-VERSION* has been bumped to 4.
2341 * (TYPEP (MAKE-ARRAY 12 :FILL-POINTER 4) 'VECTOR) now returns (VALUES T)
2342   instead of (VALUES T T).
2343 * By following the instructions that Dan Barlow posted to sbcl-devel
2344   on 2 July 2000, I was able to enable primitive dynamic object
2345   file loading code for Linux. The full-blown CMU CL LOAD-FOREIGN
2346   functionality is not implemented (since it calls ld to resolve
2347   library references automatically, requiring RUN-PROGRAM for its
2348   implementation), but a simpler SB-EXT:LOAD-1-FOREIGN (which doesn't
2349   try to resolve library references) is now supported.
2350 * The system now flushes the standard output streams when it terminates,
2351   unless QUIT is used with the RECKLESSLY-P option set. It also flushes
2352   them at several other probably-convenient times, e.g. in each pass of
2353   the toplevel read-eval-print loop, and after evaluating a form given
2354   as an "--eval" command-line option. (These changes were motivated by a
2355   discussion of stream flushing issues on cmucl-imp in August 2000.) 
2356 * The source transform for TYPEP of array types no longer assumes
2357   that an array whose element type is a not-yet-defined type 
2358   is implemented as an array of T, but instead punts, so that the 
2359   type will be interpreted at runtime.
2360 * There is now some support for cross-compiling in make.sh: each of
2361   the phases of make.sh has its own script. (This should be transparent
2362   to people doing ordinary, non-cross-compile builds.)
2363 * Since my laptop doesn't have hundreds of megabytes of memory like
2364   my desktop machine, I became more motivated to do some items on
2365   my to-do list in order to reduce the size of the system a little:
2366   ** Arrange for various needed-only-at-cold-init things to be
2367      uninterned after cold init. To support this, those things have
2368      been renamed from FOO and *FOO* to !FOO and *!FOO* (i.e., all
2369      symbols with such names are now uninterned after cold init).
2370   ** Bind SB!C::*TOP-LEVEL-LAMBDA-MAX* to a nonzero value when building
2371      fasl files for cold load.
2372   ** Remove the old compiler structure pooling code (which used to 
2373      be conditional on the target feature :SB-ALLOC) completely.
2374   ** Redo the representation of some data in cold init to be more compact.
2375   (I also looked into supporting byte compiled code at bootstrap time,
2376   which would probably reduce the size of the system a lot, but that
2377   looked too complicated, so I punted for now.)
2378 * The maximum signal nesting depth in the src/runtime/ support code has
2379   been reduced from 4096 to 256. (I don't know any reason for the very
2380   large old value. If the new smaller value turns out to break something,
2381   I'll probably just bump it back up.)
2382 * PPRINT-LOGICAL-BLOCK is now pickier about the types of its arguments,
2383   as per ANSI.
2384 * Many, many bugs reported by Peter Van Eynde have been added to
2385   the BUGS list; some have even been fixed.
2386 * While enabling dynamic object file loading, I tried to make the 
2387   code easier to understand, renaming various functions and variables
2388   with less ambiguous names, and changing some function calling
2389   conventions to be Lispier (e.g. returning NIL instead of 0 for failure).
2390 * While trying to figure out how to do the OpenBSD port, I tried to 
2391   clean up some of the code in src/runtime/. In particular, I dropped
2392   support for non-POSIX signal handling, added various comments, 
2393   tweaked the code to reduce the number of compilation warnings, and
2394   renamed some files to increase consistency.
2395 * To support the new automatic configuration functionality in make.sh,
2396   the source file target-features.lisp-expr has been replaced with the
2397   source file base-target-features.lisp-expr and the machine-generated
2398   file local-target-features.lisp-expr.
2399 * fixed a stupid quoting error in make.sh so that using CMU CL
2400   "lisp -batch" as cross-compilation host works again
2401
2402 changes in sbcl-0.6.6 relative to sbcl-0.6.5:
2403
2404 * DESCRIBE no longer tries to call itself recursively to describe
2405   bound/fbound values, so that it no longer fails on symbols which are
2406   bound to themselves (like keywords, T, and NIL).
2407 * DESCRIBE now works on generic functions.
2408 * The printer now prints less-screwed-up representations of closures
2409   (not naively trying to bogusly use the %FUNCTION-NAME accessor on them).
2410 * A private symbol is used instead of the :EMPTY keyword previously 
2411   used to mark empty slots in hash tables. Thus 
2412         (DEFVAR *HT* (MAKE-HASH-TABLE))
2413         (SETF (GETHASH :EMPTY *HT*) :EMPTY)
2414         (MAPHASH (LAMBDA (K V) (FORMAT T "~&~S ~S~%" K V)))
2415   now does what ANSI says that it should. (You can still get 
2416   similar noncompliant behavior if bang on the hash table
2417   implementation with all the symbols you get back from 
2418   DO-ALL-SYMBOLS, but at least that's a little harder to do.)
2419   This breaks binary compatibility, since tests for equality to 
2420   :EMPTY are wired into things like the macroexpansion of 
2421   WITH-HASH-TABLE-ITERATOR in FASL files produced by earlier
2422   implementations.
2423 * There's now a minimal placeholder implementation for CL:STEP,
2424   as required by ANSI.
2425 * An obscure bug in the interaction of the normal compiler, the byte
2426   compiler, inlining, and structure predicates has been patched
2427   by setting the flags for the DEFTRANSFORM of %INSTANCE-TYPEP as
2428   :WHEN :BOTH (as per Raymond Toy's suggestion on the cmucl-imp@cons.org
2429   mailing list).
2430 * Missing ordinary arguments in a macro call are now detected even
2431   when the macro lambda list contains &KEY or &REST.
2432 * The debugger no longer complains about encountering the top of the
2433   stack when you type "FRAME 0" to explicitly instruct it to go to
2434   the top of the stack. And it now prints the frame you request even
2435   if it's the current frame (instead of saying "You are here.").
2436 * As specified by ANSI, the system now always prints keywords
2437   as #\: followed by SYMBOL-NAME, even when *PACKAGE* is the
2438   KEYWORD package.
2439 * The default initial SIZE of HASH-TABLEs is now smaller.
2440 * Type information from CLOS class dispatch is now propagated
2441   into DEFMETHOD bodies, so that e.g.
2442         (DEFMETHOD FOO ((X SINGLE-FLOAT))
2443           (+ X 123.0))
2444   is now basically equivalent to 
2445         (DEFMETHOD FOO ((X SINGLE-FLOAT))
2446           (DECLARE (TYPE SINGLE-FLOAT X))
2447           (+ X 123.0))
2448   and the compiler can compile (+ X 123.0) as a SINGLE-FLOAT-only
2449   operation, without having to do run-time type dispatch.
2450 * The macroexpansion of DEFMETHOD has been tweaked so that it has
2451   reasonable behavior when arguments are declared IGNORE or IGNORABLE.
2452 * Since I don't seem to be making big file reorganizations very often
2453   any more (and since my archive of sbcl-x.y.zv.tar.bz2 snapshots
2454   is overflowing my ability to conveniently back them up), I've finally
2455   checked the system into CVS. (The CVS repository is on my home system,
2456   not at SourceForge -- putting it on SourceForge might come later.)
2457 * SB-EXT:*GC-NOTIFY-STREAM* has been added, to control where the 
2458   high-level GC-NOTIFY-FOO functions send their output. (There's
2459   still very little control of where low-level verbose GC functions
2460   send their output.) The SB-EXT:*GC-VERBOSE* variable now controls
2461   less than it used to -- the GC-NOTIFY-FOO functions are now under
2462   the control of *GC-NOTIFY-STREAM*, not *GC-VERBOSE*.
2463 * The system now stores the version string (LISP-IMPLEMENTATION-VERSION)
2464   in only one place in the source code, and propagates it automatically
2465   everywhere that it's needed. Thus e.g. when I bump the version from
2466   0.6.6 to 0.6.7, I'll only need to modify the sources in one place.
2467 * The C source files now include boilerplate legalese and documentation
2468   at the head of each file (just as the Lisp source files already did).
2469 * At Dan Barlow's suggestion, the hyperlink from the SBCL website
2470   to his page will be replaced with a link to his new CLiki service.
2471
2472 changes in sbcl-0.6.5 relative to sbcl-0.6.4:
2473
2474 * Raymond Wiker's patches to port the system to FreeBSD have been merged.
2475 * The build process now looks for GNU make under the default name "gmake",
2476   instead of "make" as it used to. If GNU make is not available as "gmake"
2477   on your system, you can change this default behavior by setting the 
2478   GNUMAKE environment variable.
2479 * Replace #+SB-DOC with #!+SB-DOC in seq.lisp so that the system 
2480   can build without error under CMU CL.
2481
2482 changes in sbcl-0.6.4 relative to sbcl-0.6.3:
2483
2484 * There is now a partial SBCL user manual (with some new text and some
2485   text cribbed from the CMU CL manual). 
2486 * The beginnings of a profiler have been added (starting with the
2487   CMU CL profiler and simplifying and cleaning up). Eventually the
2488   main interface should be through the TRACE macro, but for now, 
2489   it's still accessed through vaguely CMU-CL-style functions and macros
2490   exported from the package SB-PROFILE.
2491 * Some problems left over from porting CMU CL to the new
2492   cross-compilation bootstrap process have been cleaned up:
2493   ** DISASSEMBLE now works. (There was a problem in using DEFMACRO
2494      instead of SB!XC:DEFMACRO, compounded by an oversight on my 
2495      part when getting rid of the compiler *BACKEND* stuff.)
2496   ** The value of *NULL-TYPE* was screwed up, because it was
2497      being initialized before the type system knew the final
2498      definition of the 'NULL type. This screwed up several key
2499      optimizations in the compiler, causing inefficiency in all sorts
2500      of places. (I found it because I wanted to understand why
2501      GET-INTERNAL-RUN-TIME was consing.) 
2502 * fixed a bug in DEFGENERIC which was causing it to overwrite preexisting
2503   PROCLAIM FTYPE information. Unfortunately this broke binary 
2504   compatibility again, since now the forms output by DEFGENERIC
2505   to refer to functions which didn't exist in 0.6.3.
2506 * added declarations so that SB-PCL::USE-CACHING-DFUN-P 
2507   can use the new (as of 0.6.3) transform for SOME into MAP into 
2508   inline code
2509 * changed (MOD 1000000) type declarations for Linux timeval.tv_usec slot
2510   values to (INTEGER 0 1000000), so that the time code will no longer
2511   occasionally get blown up by Linux returning 1000000 microseconds
2512 * PRINT-UNREADABLE-OBJECT has been tweaked to make the spacing of
2513   its output conform to the ANSI spec. (Alas, this makes its output
2514   uglier in the :TYPE T :IDENTITY NIL case, but them's the breaks.)
2515 * A full call to MAP NIL with a single sequence argument no longer conses.
2516 * fixes to problems pointed out by Martin Atzmueller:
2517   * The manual page no longer talks about multiprocessing as though
2518     it were currently supported.
2519   * The ILISP support patches have been removed from the distribution,
2520     because as of version 5.10.1, ILISP now supports SBCL without us
2521     having to maintain patches.
2522 * added a modified version of Raymond Toy's recent CMU CL patch for
2523   EQUALP comparison of HASH-TABLE
2524
2525 changes in sbcl-0.6.3 relative to sbcl-0.6.2:
2526
2527 * The system still can't cross-compile itself with
2528   *TYPE-SYSTEM-INITIALIZED* (and all the consistency checks that
2529   entails), but at least it can compile more of itself that way
2530   than it used to be able to, and various buglets which were uncovered
2531   by trying to cross-compile itself that way have now been fixed.
2532 * This release breaks binary compatibility again. This time 
2533   at least I've incremented the FASL file format version to 2, so that the
2534   problem can be detected reliably instead of just causing weird errors.
2535 * various new style warnings:
2536   ** using DEFUN, DEFMETHOD, or DEFGENERIC to overwrite an old definition
2537   ** using the deprecated EVAL/LOAD/COMPILE situation names in EVAL-WHEN
2538   ** using the lexical binding of a variable named in the *FOO* style
2539 * DESCRIBE has been substantially rewritten. It now calls DESCRIBE-OBJECT
2540   as specified by ANSI.
2541 * *RANDOM-STATE* is no longer automatically initialized from 
2542   (GET-UNIVERSAL-TIME), but instead from a constant seed. Thus, the
2543   default behavior of the system is to repeat its behavior every time
2544   it's run. If you'd like to change this behavior, you can always
2545   explicitly set the seed from (GET-UNIVERSAL-TIME); whereas under the 
2546   old convention there was no comparably easy way to get the system to 
2547   repeat its behavior every time it was run.
2548 * Support for the pre-CLTL2 interpretation of FUNCTION declarations as
2549   FTYPE declarations has been removed, in favor of their ANSI
2550   interpretation as TYPE FUNCTION declarations. (See p. 228 of CLTL2.)
2551 * The quantifiers SOME, EVERY, NOTANY, and NOTEVERY no longer cons when
2552   the types of their sequence arguments can be determined at compile time.
2553   This is done through a new open code expansion for MAP which eliminates
2554   consing for (MAP NIL ..), and reduces consing otherwise, when sequence
2555   argument types can be determined at compile time.
2556 * The optimizer now transforms COERCE into an identity operation when it 
2557   can prove that the coerced object is already of the correct type. (This 
2558   can be a win for machine generated code, including the output of other
2559   optimization transforms, such as the MAP transform above.)
2560 * Credit information has been moved from source file headers into CREDITS.
2561 * Source file headers have been made more standard.
2562 * The CASE macro now compiles without complaining even when it has
2563   no clauses.
2564
2565 changes in sbcl-0.6.2 relative to sbcl-0.6.1:
2566
2567 * (Note that the way that the PCL macroexpansions were rewritten
2568   to accommodate the change in DEFGENERIC below breaks binary
2569   compatibility. That is, fasl files compiled under sbcl-0.6.1 may
2570   not run under sbcl-0.6.2. Once we get out of alpha releases,
2571   i.e. hit release 1.0.0, we'll probably try to maintain binary
2572   compatibility between maintenance releases, e.g. between sbcl-1.4.3
2573   and sbcl-1.4.4. Until then, however, it might be fairly common
2574   for maintenance releases to break binary compatibility.)
2575 * A bug in the calculation of WARNINGS-P and FAILURE-P in COMPILE-FILE
2576   has been fixed.
2577 * The reporting of unhandled signals has been changed to print some
2578   explanatory text as well as the report form. (Previously only
2579   the report form was printed.)
2580 * The macroexpansion for DEFGENERIC now DECLAIMs the function that
2581   it defines, so that the compiler no longer issues undefined function
2582   warnings for compiled-but-not-yet-loaded generic functions. 
2583 * The CLTL-style "LISP" and "USER" nicknames for the "COMMON-LISP"
2584   and "COMMON-LISP-USER" packages have been removed. Now only the "CL"
2585   and "CL-USER" standard nicknames from the "11.1.2 Standardized Packages"
2586   section of the ANSI spec are supported.
2587 * The "" nickname for the "KEYWORD" package has been removed. 
2588   The reader still handles symbol tokens which begin with a package marker
2589   as keywords, but it doesn't expose its mechanism for doing so in the
2590   (PACKAGE-NICKNAMES (FIND-PACKAGE "KEYWORD")) list.
2591 * The system now issues STYLE-WARNINGs for contradictory TYPE 
2592   proclamations. (Warnings for contradictory FTYPE proclamations would
2593   be nice too, but those can't be done usefully unless the type system
2594   is made smarter about FUNCTION types.)
2595 * The names of source files "*host-*.lisp" and "*target-*.lisp" have been 
2596   systematized, so that "*target-*.lisp is supposed to exist only on the
2597   target and imply that there's a related file which exists on the
2598   host, and *host-*.lisp is supposed to exist only on the host and imply
2599   that there's a related file which exists on the target. This involves a
2600   lot of renaming. Hopefully the acute confusion caused by the renaming
2601   will be justified by the reduction in chronic confusion..
2602   ** runtime-type.lisp    -> early-target-type.lisp
2603   ** target-type.lisp     -> late-target-type.lisp
2604   ** early-host-format.lisp -> early-format.lisp
2605   ** late-host-format.lisp -> late-format.lisp
2606   ** host-error.lisp      -> misc-error.lisp
2607   ** early-error.lisp     -> early-target-error.lisp
2608   ** late-error.lisp      -> late-target-error.lisp
2609   ** host-defboot.lisp    -> early-defboot.lisp
2610   ** code/misc.lisp       -> code/target-misc.lisp
2611   ** code/host-misc.lisp  -> code/misc.lisp
2612   ** code/numbers.lisp    -> code/target-numbers.lisp
2613   ** code/early-numbers.lisp -> numbers.lisp
2614   ** early-host-type.lisp -> early-type.lisp
2615   ** late-host-type.lisp  -> late-type.lisp
2616   ** host-typep.lisp      -> typep.lisp
2617   ** load.lisp            -> target-load.lisp
2618   ** host-load.lisp       -> load.lisp
2619   ** host-disassem.lisp   -> disassem.lisp
2620   ** host-insts.lisp      -> insts.lisp
2621   ** byte-comp.lisp       -> target-byte-comp.lisp
2622   ** host-byte-comp.lisp  -> byte-comp.lisp
2623   ** host-signal.lisp     -> signal.lisp
2624   ** host-defstruct.lisp  -> defstruct.lisp
2625   ** late-target-type.lisp -> deftypes-for-target.lisp
2626   Furthermore, several other previously target-only files foo.lisp (e.g.
2627   hash-table.lisp and random.lisp) have been split into a target-and-host
2628   foo.lisp file and a target-only target-foo.lisp file, with their key type
2629   definitions in the target-and-host part, so that the cross-compiler will
2630   know more about target types.
2631 * DEFSTRUCT BACKEND, and the BACKEND-valued *BACKEND* variable, have 
2632   gone away. In their place are various *BACKEND-FOO* variables
2633   corresponding to the slots of the old structure.
2634 * A bug which caused the SB-COLD bootstrap-time package to be propagated
2635   into the target SBCL has been fixed.
2636 * The chill.lisp system for loading cold code into a running SBCL
2637   now works better.
2638 * Support for the CMU CL "scavenger hook" extension has been removed.
2639   (It was undocumented and unused in the CMU CL sources that SBCL was
2640   derived from, and stale in sbcl-0.6.1.)
2641 * Various errors in the cross-compiler type system were detected
2642   by running the cross-compiler with *TYPE-SYSTEM-INITIALIZED*
2643   (enabling various consistency checks). Many of them were fixed,
2644   but some hard problems remain, so the compiler is back to 
2645   running without *TYPE-SYSTEM-INITIALIZED* for now.
2646 * As part of the cross-compiler type system cleanup, I implemented
2647   DEF!TYPE and got rid of early-ugly-duplicates.lisp.
2648 * I have started adding UNCROSS calls throughout the type system
2649   and the INFO database. (Thus perhaps eventually the blanket UNCROSS
2650   on cross-compiler input files will be able to go away, and various
2651   kludges with it).
2652 * CONSTANTP now returns true for quoted forms (as explicitly required
2653   by the ANSI spec).
2654
2655 changes in sbcl-0.6.1 relative to sbcl-0.6.0:
2656
2657 * changed build optimization from (SAFETY 1) to (SAFETY 3) as a short-term
2658   fix for various type-unsafety bugs, e.g. failures with (LENGTH 123) and
2659   (MAKE-LIST -1). In the longer term, it ought to become true
2660   that declarations are assertions even at SAFETY 1. For now, it's not
2661   quite true even at SAFETY 3, but it's at least more nearly true..
2662   (Note that this change seems to increases the size of the system by
2663   O(5%) and to decrease the speed of the compiler by 20% or more.)
2664 * changed ALIEN printing to be much more abbreviated, as a short-term fix
2665   for the problem of printing dozens of lines of distracting information
2666   about low-level system machinery as part of the top stack frame
2667   on entry to the debugger when an undefined function was called.
2668 * tweaked the debugger's use of WITH-STANDARD-IO-SYNTAX so that *PACKAGE*
2669   is not reset to COMMON-LISP-USER. 
2670 * Compilation of stuff related to dyncount.lisp has been made conditional
2671   on the :SB-DYNCOUNT target feature, so that the ordinary core system is
2672   smaller. The various dyncount-related symbols have been moved into
2673   a new "SB-DYNCOUNT" package.
2674 * tty-inspect.lisp has been renamed to inspect.lisp.
2675 * unix-glibc2.lisp has been renamed to unix.lisp, and the :GLIBC2
2676   feature has gone away. (When we eventually port to other flavors of 
2677   libc and/or Unix, we'll try to make the differences between flavors
2678   invisible at the user level.)
2679 * Various other *FEATURES* tags, and/or their associated conditionals,
2680   have been removed if obsolescent, or given better documentation, or
2681   sometimes given more-mnemonic names.
2682
2683 changes in sbcl-0.6.0 relative to sbcl-0.5.0:
2684
2685 * tidied up "make.sh" script
2686 * tidied up system directory structure
2687 * better "clean.sh" behavior
2688 * added doc/FOR-CMUCL-DEVELOPERS
2689 * many many small tweaks to output format, e.g. removing possibly-confusing
2690   trailing #\. character in DESCRIBE-INSTANCE
2691 * (EQUALP #\A 'A) no longer signals an error.
2692 * new hashing code, including EQUALP hashing
2693 * tidied up Lisp initialization and toplevel
2694 * initialization files (e.g. /etc/sbclrc and $HOME/.sbclrc)
2695 * command line argument processing
2696 * added POSIX-GETENV function to deal with Unix-ish environment variables
2697 * more-Unixy handling of *STANDARD-INPUT* and other Lisp streams, e.g.
2698   terminating SBCL on EOF
2699 * non-verbose GC by default
2700 * There is no more "sbcl" shell script; the sbcl file is now the C
2701   runtime executable (just like CMU CL).
2702 * removed some unused fops, e.g. FOP-UNIFORM-VECTOR, FOP-CHARACTER, and 
2703   FOP-POP-FOR-EFFECT
2704 * tweaked debug-info.lisp and debug-int.lisp to make the debugger store
2705   symbol and package information as Lisp native symbol and package objects
2706   instead of strings naming symbols and strings naming packages. This way,
2707   whenever packages are renamed (as in warm init), debug information is
2708   transformed along with everything else.
2709 * tweaked the optimization policy declarations which control the building
2710   of SBCL itself. Now, among other things, the system no longer saves
2711   source location debugging information. (This helps two problems at once
2712   by reducing SBCL size and by keeping SBCL from trying to look for its
2713   sources -- which may not exist -- when reporting errors.)
2714 * added src/cold/chill.lisp, to let SBCL read its own cold sources for
2715   debugging and testing purposes
2716 * cleaned up printing, making the printer call PRINT-OBJECT for
2717   instances, and using PRINT-UNREADABLE-OBJECT for most PRINT-OBJECT
2718   methods, giving nearly-ANSI behavior
2719 * converted almost all special variables to use *FOO* naming convention
2720 * deleted PARSE-TIME functionality, since it can be done portably
2721 * moved some files out of cold init into warm init
2722 * deleted DEFUN UNDEFINED-VALUE, replaced (UNDEFINED-VALUE) forms
2723   with (VALUES) forms
2724 * regularized formatting of source files
2725 * added an install.sh script
2726 * fixed ridiculous memory usage of cross-compiler by making
2727   compiler/alloc.lisp not try to do pooling unless it can hook
2728   itself into the GC of the cross-compilation host. Now the system
2729   builds nicely on my old laptop.
2730 * added :SB-ALLOC in target-features.lisp-expr
2731 * deleted mention of :ANSI-DOC from target-features.lisp-expr (since it
2732   was not implemented)
2733 * re-did condition handling and note reporting in the compiler. Notes
2734   are no longer handled by signalling conditions. Style warnings
2735   and warnings are handled more correctly and reported in such a way
2736   that it's easy to find one or the other in your output (so that you
2737   can e.g. figure out which of many problems caused COMPILE-FILE to 
2738   return FAILURE-P).
2739 * changed the severity of several compiler warnings from full WARNING
2740   to STYLE-WARNING in order to conform with the ANSI spec; also changed
2741   compiler note reporting so that it doesn't use the condition system
2742   at all (and hence affects neither FAILURE-P nor WARNINGS-P in the 
2743   COMPILE-FILE command)
2744 * made PROCLAIM and DECLAIM conform to ANSI. PROCLAIM is now an ordinary
2745   function. As a consequence, START-BLOCK and END-BLOCK declarations are
2746   no longer supported, since their implementation was deeply intertwingled
2747   with the magical, non-ANSI treatment that PROCLAIM received in CMU CL.
2748 * removed bogus "support" for compiler macros named (SETF FOO), and
2749   removed the compiler macro for SETF INFO (but only after making a fool
2750   of myself on the cmucl-imp mailing list by posting a bogus patch for
2751   DEFINE-COMPILER-MACRO..)
2752 * Compiled files containing forms which have side effects on the Lisp
2753   reader (such as DEFPACKAGE forms) are now handled more correctly.
2754   (Compiler queuing of top level lambdas has been suppressed by setting
2755   *TOP-LEVEL-LAMBDA-MAX* to 0. )
2756 * deleted various currently-unused source files, e.g. gengc.lisp. They
2757   may be added back at some point e.g. when porting to other architectures,
2758   but until they are it's distracting to distribute them and to try to
2759   maintain them.
2760 * deleted "UNCROSS couldn't recurse through.." style warnings, since 
2761   there were so many of them they're just distractions, and UNCROSS is
2762   known to be able to handle the current sources
2763 * moved PROFILE functionality into TRACE, so that it will be clear
2764   how the wrapping and unwrapping of functions when you profile them
2765   interacts with the wrapping and unwrapping of functions when you
2766   trace them. (Actually, the functionality isn't there yet, but at least
2767   the interface specification is there. Hopefully, the functionality will
2768   arrive with some future maintenance release.)
2769 * removed host-oops.lisp
2770 * changed signature of QUIT function to allow UNIX-CODE argument
2771 * fixed READ-SEQUENCE bug
2772 * tweaked verbose GC output so that it looks more like the progress
2773   output that ANSI specifies for functions like LOAD
2774 * set up the system on sourceforge.com, with home pages, mailing lists, etc.
2775 * added <http://sbcl.sourceforge.com> to the banner information printed by
2776   the sbcl executable