Skip to content

Commit

Permalink
fixed bug in make-instances-setting-accessors which required a missin…
Browse files Browse the repository at this point in the history
…g fdefinition. fixes #1
  • Loading branch information
bobbysmith007 committed Aug 12, 2013
1 parent 6910991 commit 1080b8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clsql.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@
(for o = (make-instance class))
(iter (for c in columns)
(for d in row)
(for setter = `(setf ,c))
(for setter = (fdefinition `(setf ,c)))
(for fn = (compute-applicable-methods setter (list d o)))
(when fn (funcall setter d o)))
(collect o)))
Expand Down

0 comments on commit 1080b8c

Please sign in to comment.