From: Unai Uribarri Rodriguez
Subject: AllegroCL: How to write a huge list in one line
Date: 
Message-ID: <38EE49F4.FAB541E5@opalo.etsiig.uniovi.es>
format splits the list into several lines.
Is there any way to write a huge list to a file in an unique line?

From: Barry Margolin
Subject: Re: AllegroCL: How to write a huge list in one line
Date: 
Message-ID: <u%rI4.45$lD5.1646@burlma1-snr2>
In article <·················@opalo.etsiig.uniovi.es>,
Unai Uribarri Rodriguez  <········@opalo.etsiig.uniovi.es> wrote:
>format splits the list into several lines.
>Is there any way to write a huge list to a file in an unique line?

Set *PRINT-PRETTY* to NIL.

-- 
Barry Margolin, ······@genuity.net
Genuity, Burlington, MA
*** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups.
Please DON'T copy followups to me -- I'll assume it wasn't posted to the group.
From: Erik Naggum
Subject: Re: AllegroCL: How to write a huge list in one line
Date: 
Message-ID: <3164396968656316@naggum.no>
* Unai Uribarri Rodriguez <········@opalo.etsiig.uniovi.es>
| format splits the list into several lines.

  format does what it's told to do, and it doesn't have free will (it only
  feels like it until you learn its language), so you're blaming the wrong
  guy, here.  so, what, _exactly_, were you telling format to do?

| Is there any way to write a huge list to a file in an unique line?

(format <stream> "~{~A~^ ~}~%" <huge-list>)

#:Erik