The temporary variables in cmplet.lsp should not have any package (i.e. gensym instead of gentemp)

This commit is contained in:
Juan Jose Garcia Ripoll 2012-12-08 11:49:06 +01:00
parent 900282e85f
commit ac40a4649b

View file

@ -28,7 +28,7 @@
for b in bindings
if (atom b)
collect b into real-bindings
else collect (setf temp (gentemp "LET")) into temp-names and
else collect (setf temp (gensym "LET")) into temp-names and
collect (cons temp (cdr b)) into temp-bindings and
collect (list (car b) temp) into real-bindings
finally