But what to do then? I want to generate *fresh* symbols and in the same time<div>I need to compare the symbol names</div><div><br></div><div>Kind regards</div><div>Taoufik</div><div><br><br><div class="gmail_quote">On Wed, Aug 1, 2012 at 9:31 PM, Joshua TAYLOR <span dir="ltr"><<a href="mailto:joshuaaaron@gmail.com" target="_blank">joshuaaaron@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Wed, Aug 1, 2012 at 3:22 PM, Taoufik Dachraoui<br>
<<a href="mailto:dachraoui.taoufik@gmail.com">dachraoui.taoufik@gmail.com</a>> wrote:<br>
</div><div class="im">> Ok thanks<br>
><br>
> I solved the problem by doing using (intern (symbol-name (gensym))) instead<br>
> of (gensym)<br>
<br>
</div>The purpose of gensym is to produce *fresh* symbols. If you do<br>
something like what you've proposed though, though, you're not<br>
guaranteed to get fresh (not eq to any existing symbol) symbols (this<br>
example is under SBCL, but similar things will work in other lisps):<br>
<br>
* (gensym)<br>
#:G737<br>
<br>
* (let ((x 'g738))<br>
    (eq x (intern (symbol-name (gensym)))))<br>
T<br>
<span class="HOEnZb"><font color="#888888"><br>
//JT<br>
--<br>
Joshua Taylor, <a href="http://www.cs.rpi.edu/~tayloj/" target="_blank">http://www.cs.rpi.edu/~tayloj/</a><br>
</font></span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
Openmcl-devel mailing list<br>
<a href="mailto:Openmcl-devel@clozure.com">Openmcl-devel@clozure.com</a><br>
<a href="http://clozure.com/mailman/listinfo/openmcl-devel" target="_blank">http://clozure.com/mailman/listinfo/openmcl-devel</a><br>
</div></div></blockquote></div><br></div>