eudoxia0 / crane

An ORM for Common Lisp.
http://eudoxia.me/crane/
201 stars 19 forks source link

Fixed "Tried to call VALUE-LIST on a dotted pair.". #30

Closed fstamour closed 9 years ago

fstamour commented 9 years ago

I just tried

(crane:deftable data-list ()
  (size :type integer))
(crane:deftable list-elem ()
  (list-id :type integer
       :foreign data-list)
  (datum :type text)

And I was getting the error Tried to call VALUE-LIST on a dotted pair.. So here is my fix.

fstamour commented 9 years ago

:+1: