Activity log for bug #330299

Date Who What changed Old value New value Message
2009-02-16 22:26:09 Tobias C. Rittweiler bug added bug
2009-02-16 22:28:31 Tobias C. Rittweiler description The following emits a compiler-note complaining about #\0 not being type 'bit: (defun foo1 (size) (make-array size :element-type 'bit-vector :initial-element #\0)) However, the following does not emit such a note: (defun foo2 (size) (make-sequence 'bit-vector size :initial-element #0)) And, to big surprise, the following does _not_ emit any note either (defun foo3 (size) (values (make-sequence 'bit-vector size :initial-element #0) (make-array size :element-type 'bit-vector :initial-element #\0))) On SBCL "1.0.25.6". The following emits a compiler-note complaining about #\0 not being type 'bit: (defun foo1 (size) (make-array size :element-type 'bit :initial-element #\0)) However, the following does not emit such a note: (defun foo2 (size) (make-sequence 'bit-vector size :initial-element #0)) And, to big surprise, the following does _not_ emit any note either (defun foo3 (size) (values (make-sequence 'bit-vector size :initial-element #0) (make-array size :element-type 'bit :initial-element #\0))) On SBCL "1.0.25.6".
2009-02-17 13:06:56 Nikodemus Siivola sbcl: status New Confirmed
2009-02-17 13:06:56 Nikodemus Siivola sbcl: importance Undecided Medium
2009-02-17 13:06:56 Nikodemus Siivola sbcl: statusexplanation
2010-10-11 09:27:37 Surbhi Palande branch linked lp:~csurbhi/+junk/mdadm.fixes
2011-12-09 17:06:31 Nikodemus Siivola branch unlinked lp:~csurbhi/+junk/mdadm.fixes
2014-12-03 01:19:36 Douglas Katzman sbcl: status Confirmed Fix Committed
2014-12-03 01:19:41 Douglas Katzman sbcl: assignee Douglas Katzman (dougk)
2014-12-31 21:06:29 Christophe Rhodes sbcl: status Fix Committed Fix Released