Subject: Re: strings and characters From: Erik Naggum <erik@naggum.no> Date: 2000/03/17 Newsgroups: comp.lang.lisp Message-ID: <3162300918453715@naggum.no> * Tim Bradshaw <tfb@cley.com> | Is there a useful, fast, check that that (write-sequence x y) will write | (length x) bytes on y if all is well for LispWorks / Liquid ...? yes. make the buffer and the stream have type (unsigned-byte 8), and avoid the character abstraction which you obviously can't trust, anyway. #:Erik