<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Hi Edi,<div><br></div><div>That certainly reads to me as though the intent is for print-object to be the decision point (at least in cases where *print-pretty* is false).</div><div><br></div><div>However, as far as I understand 11.1.2.1.2:</div><div><br></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><dl style="font-family: Times;"><dt><span style="font-size: 12pt;">Except where explicitly allowed, the consequences are undefined if any of the following actions are performed on an </span><a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_e.htm#external_symbol"><i>external symbol</i></a><span style="font-size: 12pt;"> of the </span><tt>COMMON-LISP</tt><span style="font-size: 12pt;"> package:</span></dt></dl></div></blockquote><font face="Times">[...]<br></font><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><dl style="font-family: Times;"><dt>19. Defining a <a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_m.htm#method"><i>method</i></a> for a <a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_s.htm#standardized"><i>standardized</i></a> <a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_g.htm#generic_function"><i>generic function</i></a> which is <a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_a.htm#applicable"><i>applicable</i></a> when all of the <a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_a.htm#argument"><i>arguments</i></a> are <a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_d.htm#direct_instance"><i>direct instances</i></a> of <a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_s.htm#standardized"><i>standardized</i></a> <a rel="DEFINITION" href="http://www.lispworks.com/documentation/HyperSpec/Body/26_glo_c.htm#class"><i>classes</i></a>.</dt></dl></div></blockquote><div><div><div><br></div><div>I think the much-feared "consequences are undefined" phrasing there means the implementation is free to act as though the method you defined is in fact defined, but completely ignore it when doing dispatch. (or reformat your hdd or make monkeys fly or whatever).</div><div><br></div><div>-Thomas</div><div><br></div>> From: edi@weitz.de<br>> Date: Sat, 29 Aug 2015 11:10:15 +0200<br>> To: pro@common-lisp.net<br>> Subject: PRINT-OBJECT for built-in classes<br>> <br>> The following "works" in three different CL implementations I tried<br>> while in three others the way complex numbers are printed doesn't<br>> change.<br>> <br>> ? (defmethod print-object ((obj complex) stream)<br>>      (format stream "#< ~A + ~A * I >"<br>>                 (realpart obj) (imagpart obj)))<br>> #<STANDARD-METHOD PRINT-OBJECT (COMPLEX T)><br>> ? #c(1 1)<br>> #< 1 + 1 * I ><br>> <br>> My understanding of 22.1.2 of the standard is that each Lisp MUST have<br>> a PRINT-OBJECT method for complex numbers.  The question then is<br>> whether I'm allowed to redefine it like above (I think I am) and/or<br>> whether an implementation is allowed to accept this redefinition<br>> without a warning but then to ignore it (which, as I said, is what<br>> happens in three respectable Lisps).<br>> <br>> Thanks,<br>> Edi.<br>> <br>> [Note: There's no point in talking me out of this as I don't actually<br>> want to do it anyway.  It's just an example and I'm only interested in<br>> what exactly is governed by the standard.  Complex numbers are also<br>> just an example.  I'm interested in PRINT-OBJECT for built-in classes<br>> in general.]<br>> <br></div></div>                                        </div></body>
</html>