FORMAT a list

Christopher Stacy <[email protected]> Wed, 14 May 2025 22:16:05 -0400
Newsgroups gmane.lisp.steel-bank.general
Message-ID <[email protected]>
In SBCL 2.4.6 (Intel MacOS Monterey):

When I FORMAT the following list:

("SELECT" "this, that" "FROM" "table" "WHERE" "this" "LIKE" "\"foo%\""
"OR"  ("watts" ">" 42 "AND" "jules" ">" "?"))

with(format nil  "~{~A~^ ~}" zz)

I get a ton of gratuitous whitespace between the ">" and the "?".
In SBCL: (length (format nil "~{~A~^ ~}" zz))  => 137
In CCL: (length (format nil "~{~A~^ ~}" zz))  => 81

Am I doing something silly or is this a bug?

Thanks!
---Chris

_______________________________________________
Sbcl-help mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sbcl-help