[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
re: Issue: HASH-TABLE-STABILITY (Version 1)
- To: cl-cleanup@sail.stanford.edu
- Subject: re: Issue: HASH-TABLE-STABILITY (Version 1)
- From: Kim A. Barrett <IIM@ECLA.USC.EDU>
- Date: 2 Jan 89 15:20 PST
- Sender: masinter.pa@Xerox.COM
There is a minor glitch in an aside that needs to be fixed. Paragraph 3 of
item 3 says that the following code would be acceptable as the <sxh> function
for EQL tables:
(if (numberp x) (sxhash x) (%unique-no x))
In general, the NUMBERP test really should be (OR (NUMBERP X) (CHARACTERP X)),
to correspond properly to the definition of EQL.