structure classes related by inheritance. As of 0.7.0, SBCL still
doesn't follow it.
+128:
+ READ-SEQUENCE doesn't work for Gray streams. (reported by Nathan
+ Froyd sbcl-devel 2001-10-15)
+
KNOWN BUGS RELATED TO THE IR1 INTERPRETER
#!/bin/sh
+if [ "" != "$JADE" ]; then
+ # The user has told us where to find jade, good.
+ echo using $JADE
+elif which openjade; then
+ # OpenJade is the version of Jade which comes with OpenBSD 2.9,
+ # and I started using it in sbcl-0.pre7.x. -- WHN
+ JADE=openjade
+elif which jade; then
+ # I used the original Jade until sbcl-0.pre7.x. It might still
+ # work. -- WHN
+ JADE=jade
+else
+ echo "can't find Jade, sorry"
+ exit 1
+fi
+
rm -f book1.htm
-jade -t sgml -ihtml -d sbcl-html.dsl\#html user-manual.sgml
+$JADE -t sgml -ihtml -d sbcl-html.dsl\#html user-manual.sgml
ln -sf book1.htm user-manual.html
;; anyway, and (2) such a declamation can be (especially for
;; alien values) both messy to do by hand and very important
;; for performance of later code which uses the return value.
- (declaim (ftype (function (mapcar (constantly t) ',args)
+ (declaim (ftype (function ,(mapcar (constantly t) args)
(alien ,result-type))
,lisp-name))
;;; for internal versions, especially for internal versions off the
;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.pre7.63"
+"0.pre7.64"