Make the prototype of the GENERIC-FUNCTION class (and indeed all
other direct instances of GENERIC-FUNCTION) printable; also use
a newline rather than a semicolon in x86-arch.c in the hope that
it's more acceptable to OpenBSD.
is the greater. (thanks to Patrik Nordebo)
* bug fix: MAKE-ARRAY ignored :INITIAL-CONTENTS NIL. (reported by
Kalle Olavi Niemitalo)
+ * bug fix: the CLASS-PROTOTYPE of the GENERIC-FUNCTION class is now
+ printable. (reported by Eric Marsden)
planned incompatible changes in 0.8.x:
* (not done yet, but planned:) When the profiling interface settles
(defmethod print-object ((slotd slot-definition) stream)
(named-object-print-function slotd stream))
-(defmethod print-object ((generic-function generic-function) stream)
+(defmethod print-object ((generic-function standard-generic-function) stream)
(named-object-print-function
generic-function
stream
{
u32 eax=0;
do {
- asm ("xor %0,%0;lock cmpxchg %1,%2"
+ asm ("xor %0,%0\n\
+ lock cmpxchg %1,%2"
: "=a" (eax)
: "r" (value), "m" (*word)
: "memory", "cc");
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.2.5"
+"0.8.2.6"