From: <don...@is...> - 2023-07-14 02:36:06
|
I see I asked the same question in 2016 !! And the answer is the same now -- print-pretty is t Don Cohen writes: > > (setf list '("abc" "def" "qwe > rty > uiop" "zxc")) > > (with-output-to-string (s)(loop for x in list do (format s "~s~c" x #\tab))) > "\"abc\" \"def\" > \"qwe > rty > uiop\" \"zxc\" " > > Why is there an extra new line before the list element that contains > the newlines? > Is there some way to suppress it ? |