From mantoniotti at common-lisp.net Thu Jun 30 17:48:06 2005 From: mantoniotti at common-lisp.net (Marco Antoniotti) Date: Thu, 30 Jun 2005 19:48:06 +0200 (CEST) Subject: [cl-enumeration-cvs] CVS update: enumerations/hash-table-enumerations.lisp Message-ID: <20050630174806.17EB1880E0@common-lisp.net> Update of /project/cl-enumeration/cvsroot/enumerations In directory common-lisp.net:/tmp/cvs-serv19520 Modified Files: hash-table-enumerations.lisp Log Message: Fixed stupid mistake in the ENUMERATE method. The hash table was not passed to MAKE-INSTANCE of the HASH-TABLE-ENUMERATION object. Thanks to Martin Elster for finding this one out. Date: Thu Jun 30 19:48:06 2005 Author: mantoniotti Index: enumerations/hash-table-enumerations.lisp diff -u enumerations/hash-table-enumerations.lisp:1.1.1.1 enumerations/hash-table-enumerations.lisp:1.2 --- enumerations/hash-table-enumerations.lisp:1.1.1.1 Wed Mar 9 19:18:02 2005 +++ enumerations/hash-table-enumerations.lisp Thu Jun 30 19:48:05 2005 @@ -57,6 +57,7 @@ &allow-other-keys) (declare (ignore start end)) (make-instance 'hash-table-enumeration + :object x :keys keys :values values :key-value-pairs key-value-pairs)) From mantoniotti at common-lisp.net Thu Jun 30 17:48:48 2005 From: mantoniotti at common-lisp.net (Marco Antoniotti) Date: Thu, 30 Jun 2005 19:48:48 +0200 (CEST) Subject: [cl-enumeration-cvs] CVS update: enumerations/enumerations.system Message-ID: <20050630174848.BBA82880E0@common-lisp.net> Update of /project/cl-enumeration/cvsroot/enumerations In directory common-lisp.net:/tmp/cvs-serv19540 Modified Files: enumerations.system Log Message: Added preliminary code to handle the ITERATE library. Date: Thu Jun 30 19:48:48 2005 Author: mantoniotti Index: enumerations/enumerations.system diff -u enumerations/enumerations.system:1.1.1.1 enumerations/enumerations.system:1.2 --- enumerations/enumerations.system:1.1.1.1 Wed Mar 9 19:18:02 2005 +++ enumerations/enumerations.system Thu Jun 30 19:48:48 2005 @@ -1,7 +1,6 @@ ;;; -*- Mode: Lisp -*- (mk:defsystem "ENUMERATIONS" - ;; :source-pathname "" :components ("enumerations-pkg" (:file "enumerations" :depends-on ("enumerations-pkg")) (:file "sequence-enumeration" :depends-on ("enumerations-pkg")) @@ -12,6 +11,8 @@ (:file "array-enumerations" :depends-on ("enumerations")) (:file "number-enumerations" :depends-on ("enumerations")) (:file "foreach" :depends-on ("enumerations")) + #+:iterate (:file "iterate-extension" + :depends-on ("enumerations")) )) ;;; end of file -- enumerations.system -- From mantoniotti at common-lisp.net Thu Jun 30 17:49:54 2005 From: mantoniotti at common-lisp.net (Marco Antoniotti) Date: Thu, 30 Jun 2005 19:49:54 +0200 (CEST) Subject: [cl-enumeration-cvs] CVS update: enumerations/ChangeLog Message-ID: <20050630174954.D6904880E0@common-lisp.net> Update of /project/cl-enumeration/cvsroot/enumerations In directory common-lisp.net:/tmp/cvs-serv19565 Added Files: ChangeLog Log Message: ChangeLog created and updated. Date: Thu Jun 30 19:49:54 2005 Author: mantoniotti