0.7.13.35:
authorChristophe Rhodes <csr21@cam.ac.uk>
Mon, 24 Mar 2003 09:18:08 +0000 (09:18 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Mon, 24 Mar 2003 09:18:08 +0000 (09:18 +0000)
Laster minute contrib fixes
... use LENGTH not STRING-LESSP in SB-ACLREPL (from KMR)
... add newline at end of defpackage.lisp
(plus one new BUG)

BUGS
contrib/sb-aclrepl/sb-aclrepl.lisp
contrib/sb-bsd-sockets/defpackage.lisp
version.lisp-expr

diff --git a/BUGS b/BUGS
index 4e6b5db..93d9f25 100644 (file)
--- a/BUGS
+++ b/BUGS
@@ -1271,6 +1271,14 @@ WORKAROUND:
   So it's somehow checking the uninterned old accessor name instead
   of the new requested accessor name, which seems broken to me (WHN).
 
+242: "WRITE-SEQUENCE suboptimality"
+  (observed from clx performance)
+  In sbcl-0.7.13, WRITE-SEQUENCE of a sequence of type 
+  (SIMPLE-ARRAY (UNSIGNED-BYTE 8) (*)) on a stream with element-type
+  (UNSIGNED-BYTE 8) will write to the stream one byte at a time,
+  rather than writing the sequence in one go, leading to severe
+  performance degradation.
+
 DEFUNCT CATEGORIES OF BUGS
   IR1-#:
     These labels were used for bugs related to the old IR1 interpreter.
index 3d43f7a..a4d4b4c 100644 (file)
@@ -51,7 +51,7 @@
       (car (sort (append
                  (package-nicknames cl:*package*)
                  (list (package-name cl:*package*)))
-                #'string-lessp))
+                (lambda (a b) (< (length a) (length b)))))
       (package-name cl:*package*)))
 
 (defun read-cmd (input-stream)
index 5b4b72f..344136d 100644 (file)
@@ -132,4 +132,4 @@ than "network-endian integers".  See the section on <a href="#internet"
          #.(namestring
             (merge-pathnames "index.html"
                              (or *load-pathname* *compile-file-pathname*)))
-         symbol))
\ No newline at end of file
+         symbol))
index 53c9e7a..5c89e7a 100644 (file)
@@ -18,4 +18,4 @@
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
 
-"0.7.13.34"
+"0.7.13.35"