Commenting on myself here:<br><br><div class="gmail_quote">On Sun, Jul 17, 2011 at 8:40 PM, Erik Huelsmann <span dir="ltr"><<a href="mailto:ehuels@gmail.com">ehuels@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br><div>Today I thought I'd address ticket #160. That ticket is about %OUTPUT-OBJECT (a primitive) checking the string returned for the non-readable "#<" marker. The problem is that it'll raise a PRINT-NOT-READABLE error on any output containing that marker, even if it's part the serialized presentation which *is* readable, like the uninterned symbol #:|#<32|.</div>

<div><br></div><div>The solution I'm aiming at is to make every writeToString() method raise an error when it can't return a readable representation when a readable representation is requested.</div><div><br></div>

<div>In preparation of this change I'm investigating the uses of writeToString(). There are 213 occurrences of the string ".writeToString()", many of which are related to the creation of error messages. It'd be particularly impractical to generate errors while creating an error message. On the other hand, there are also uses, such as the one by %OUTPUT-OBJECT which typically *should* obey those values and generate the PRINT-NOT-READABLE error accordingly.</div>

<div><br></div><div>So, simply renaming writeToString() to printObject() is still an option. We can even make the printObject() functions check whether they are allowed to return unreadable output. However, it seems to me we additionally need a function which returns - optionally unreadable - output without generating errors. I'm thinking of a function which resets the variables to the values WITH-STANDARD-IO-SYNTAX except that it binds *PRINT-READABLY* to NIL. Maybe that function should be called printUnreadableObject() or something alike. I've also thought about renaming writeToString() to printObjectInternal() and creating a new printObject(boolean requireReadable) which does the required work if the argument is true.</div>
</blockquote><div> </div><div>The line between printUnreadableObject() and toString() would be getting finer, since, presumably, the latter can't go about throwing lisp errors either. However, since .toString() is also called by IDEs during the debugging process, I'd assume it's not practical to start doing heavy Lisp evaluations to get the correct popup. So, my idea would be that .toString() would be a lightweight function producing output to help debugging where possible and printUnreadableObject() would much more heavy weight, producing output a Lisp user would expect.</div>
<div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div></div><div>Hmm. I hope the above is something people want to comment on. At least I've tried to describe my findings so far. I'm interested to know what others think.</div>
</blockquote><div><br></div><div>That's to complete my memory dump :-)</div><div><br></div><div>Bye,</div><div><br></div><div>Erik. </div></div>