<html>
<head>

</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif; ">
<div>
<div>
<div>Gents,</div>
<div><br>
</div>
<div>I'm wading into the deep end here for a first LISP project in more than 20 years (last time was on a Symbolics XL1200!).</div>
<div><br>
</div>
<div>I'm getting some errors related to slot-definition-name (and types) that appear to be related to conditional compilation. This page:</div>
<div><br>
</div>
<div><span class="Apple-tab-span" style="white-space:pre"><a href="http://ccl.clozure.com/manual/chapter11.2.html">http://ccl.clozure.com/manual/chapter11.2.html</a></span></div>
<div><br>
</div>
<div>Indicates that these MOP functions are exported from the CCL package, however the system I'm loading (XMLisp) has the following conditional imports:</div>
<div><br>
</div>
<div>
<div> #+:mcl</div>
<div>  (import '(ccl:slot-definition-name ccl:slot-definition-type ccl:slot-definition-initform))</div>
<div>  #+(or :ccl-5.1 :openmcl)</div>
<div>  (import '(ccl:class-slots))</div>
</div>
<div>…</div>
<div><br>
</div>
<div>Emacs helpfully colors the non-applicable conditionals in red (same color as comments), and the ccl:class-slots import is the one being executed.</div>
<div><br>
</div>
<div>Does anyone have handy the proper import conditional for ccl 1.8? Where would this be documented (:openmcl, :mcl or :ccl-X.Y) ?</div>
</div>
</div>
<div><br>
</div>
<div>I also found CloserMOP that seems to smooth over some of these implementation difference. Has anyone experience with this? It it worth trying to use it in this case?</div>
<div><br>
</div>
<div>Cheers,</div>
<div><span class="Apple-tab-span" style="white-space:pre"></span>- Steve</div>
</body>
</html>