[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: Problems with (open
- To: 72110.1107@compuserve.com, Info-MCL@cambridge.apple.com
- Subject: RE: Problems with (open
- From: "pierce" <pierce@at-mail-server.vitro.com>
- Date: 20 Jul 92 17:29:31 U
>>Does anyone know why this does not work?
>>
>>? (setf a (open "test" :direction :io :if-exists :overwrite
>> :element-type :unsigned-byte))
The correct call is:
(setf a (open "test" :direction :io :if-exists :overwrite
:element-type 'unsigned-byte))
or
(setf a (open "test" :direction :io :if-exists :overwrite
:element-type '(unsigned-byte <Size>))
where <Size> is the size of the unsigned byte.
-Jonathan