[cl-enumeration-cvs] CVS update: enumerations/hash-table-enumerations.lisp
Marco Antoniotti
mantoniotti at common-lisp.net
Thu Jun 30 17:48:06 UTC 2005
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))
More information about the Cl-enumeration-cvs
mailing list