COMMON LISP JP > Archives > 2014/07/03

2014/07/03 16:22:21 UTCg000001
#
sbcl 1.2.1を読みますのつづきです
#
- bug fix: accessing NIL arrays stopped producing errors. (#1311421) ですが、
#
(write (make-array 10 :element-type nil))
;=> "£KÇ...<other junk>"
#
こんなゴミが出るという報告ですが、なんで型にnilを指定しようと思うのか。(make-array 10 :initial-element nil)の間違いではないのか、という感じもしますが、(make-array 10 :element-type nil)の時点でエラーを上げるようになって修正されたみたいです
#
〜つづく〜