X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=93d9f256e045f70d8561309945b617b50df90353;hb=3d9d3088982414ca5617caf62bd37b4fecac29b6;hp=6f0011c28db72bf1812296b2fd5b326fb9da609f;hpb=b4ccc20df7644d7d3b601a22059d796e8f23c9af;p=sbcl.git diff --git a/BUGS b/BUGS index 6f0011c..93d9f25 100644 --- a/BUGS +++ b/BUGS @@ -1169,17 +1169,6 @@ WORKAROUND: 229: (subtypep 'function '(function)) => nil, t. -231: "SETQ does not correctly check the type of a variable being set" - b. - (defun foo (x z) - (declare (type integer x)) - (locally (declare (type (real 1) x)) - (setq x z)) - (list x z)) - (foo 0 0) => (0 0). - - (fixed in 0.7.12.8) - 233: bugs in constraint propagation a. (defun foo (x) @@ -1270,24 +1259,7 @@ WORKAROUND: compiler gets its hands on the code needing compilation from the REPL, it has been macroexpanded several times. -240: - "confused lexical/special warnings in MULTIPLE-VALUE-BIND" - (from tonyms on #lisp IRC 2003-02-25) - In sbcl-0.7.12.55, compiling - (cl:in-package :cl-user) - (defvar *foo* 0) - (defvar *bar* 1) - (defun bar () - (multiple-value-bind (*foo* *bar*) 'eleventy-one - (bletch))) - (defun bletch () (format t "~&*FOO*=~S *BAR*=~S" *foo* *bar*)) - (bar) - gives warnings like "using the lexical binding of the symbol *FOO*" - even though LOADing the fasl file shows that in fact the special - bindings are being used. - -241: - "DEFCLASS mysteriously remembers uninterned accessor names." +241: "DEFCLASS mysteriously remembers uninterned accessor names." (from tonyms on #lisp IRC 2003-02-25) In sbcl-0.7.12.55, typing (defclass foo () ((bar :accessor foo-bar))) @@ -1299,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.