Skip to content

Commit

Permalink
return class from reinitialize-instance as SBCL expects (reported in …
Browse files Browse the repository at this point in the history
…SBCL-devel by Stas)
  • Loading branch information
bobbysmith007 committed Feb 23, 2015
1 parent f9f46dd commit df05ba2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2014-02-23 Russ Tyndall <russ@acceleration.net>
* sql/metaclasses.lisp
made reinitialize-instance return the instance passed to it as
SBCL now expected (mentioned on the SBCL-devel mailing list by
Stas

2014-12-03 Russ Tyndall <russ@acceleration.net>
* sqlite-sql.lisp
Added database arg to `canonicalize-result-types` so that it could
Expand Down
3 changes: 2 additions & 1 deletion sql/metaclasses.lisp
Expand Up @@ -149,7 +149,8 @@
(remove-keyword-arg all-keys :direct-superclasses)))
(call-next-method)))
(register-metaclass class (nth (1+ (position :direct-slots all-keys))
all-keys)))
all-keys))
class)


(defun get-keywords (keys list)
Expand Down

0 comments on commit df05ba2

Please sign in to comment.