1.0.13.45: close the fd before deleting / moving files on CLOSE :ABORT T
[sbcl/simd.git] / tests / bug-doug-mcnaught-20030914.lisp
blob1b14dd6e050a97e193fcb71dd8c7ddfb567b0855
1 (eval-when (:compile-toplevel :load-toplevel :execute)
2 (setq *readtable* (copy-readtable nil)) ; LOAD binds *readtable*...
4 (set-macro-character #\] (get-macro-character #\)))
6 (set-dispatch-macro-character #\# #\[
7 #'(lambda (s c n) (declare (ignore c))
8 (let* ((type (if n `(unsigned-byte ,n)
9 '(unsigned-byte 8)))
10 (list (read-delimited-list #\] s nil))
11 (len (length list)))
12 (make-array (list len)
13 :element-type type
14 :initial-contents list)))))
16 (defvar *bug-doug-mcnaught-20030914* '#4[1 2 3])