() Sebastian Tennant <[email protected]>
() Sun, 10 May 2009 16:21:29 +0000
(with-output-to-file (string-append USER-UPLOAD-DIR upload-fname)
(lambda ()
(display upload)))
Perhaps you can convert the string in variable `upload' to a uniform vector
and write it out using `uniform-vector-write'. It may be the case, too,
that the string can be passed to `uniform-vector-write' directly, e.g.:
(with-output-to-file (string-append USER-UPLOAD-DIR upload-fname)
(lambda ()
(uniform-vector-write upload)))
thi