Update of /project/movitz/cvsroot/movitz/losp/muerte In directory common-lisp.net:/tmp/cvs-serv25731
Modified Files: inspect.lisp Log Message: Added case for bignums in shallow-copy.
Date: Wed Jun 2 16:21:13 2004 Author: ffjeld
Index: movitz/losp/muerte/inspect.lisp diff -u movitz/losp/muerte/inspect.lisp:1.9 movitz/losp/muerte/inspect.lisp:1.10 --- movitz/losp/muerte/inspect.lisp:1.9 Sat Apr 17 07:09:07 2004 +++ movitz/losp/muerte/inspect.lisp Wed Jun 2 16:21:13 2004 @@ -10,7 +10,7 @@ ;;;; Author: Frode Vatvedt Fjeld frodef@acm.org ;;;; Created at: Fri Oct 24 09:50:41 2003 ;;;; -;;;; $Id: inspect.lisp,v 1.9 2004/04/17 14:09:07 ffjeld Exp $ +;;;; $Id: inspect.lisp,v 1.10 2004/06/02 23:21:13 ffjeld Exp $ ;;;; ;;;;------------------------------------------------------------------
@@ -175,6 +175,8 @@ (etypecase old (cons (cons (car old) (cdr old))) + (bignum + (copy-bignum old)) (std-instance (allocate-std-instance (std-instance-class old) (std-instance-slots old)))