I am working on improving the org babel racket mode and am running into issues with inserting longer vars
Whether I do
(format "%S" '((2 0 0 4 2 0 0 3 0 0 4 0 0 7)))
or
(with-output-to-string (princ '((2 0 0 4 2 0 0 3 0 0 4 0 0 7))))
I always get back the truncated
((2 0 0 4 2 0 0 3 0 0 ...))
not the full object in a string. How do I stringify the list without truncation?
emacs -q
too? – choroba Jul 08 '20 at 23:06emacs -q
it does not truncate. I am doing spacemacs so I suppose its possibly something in there...though I would expect there to be a low level function where no such effect would occur – George Mauer Jul 08 '20 at 23:19