Wed Jun 10 14:01:10 CEST 2009 Tobias Rautenkranz <tobias@rautenkranz.ch>
* No need for a synchronized hash table when threads are not supported.
hunk ./src/object-map.lisp 19
- (cerror "Use unsynchronized hash-table"
- "Synchronized hash table not implemented.")
+ (when *supports-threads-p*
+ (cerror "Use unsynchronized hash-table"
+ "Synchronized hash table not implemented."))