[trivial-timeout-devel] Small bug found in the Clozure Common Lisp
Denatus
denatus at gmail.com
Thu Sep 18 23:03:55 UTC 2008
I found a small bug/typo in the CCL specific code in the with-timeout.lisp
file, which makes the trivial-timeout library not to function properly on
CCL.
File: with-timeout.lisp
Original code:(Line 87 and 88)
(* ,gseconds #+(or openmcl ccl)
ccl:*ticks-per-second* #+digitool 60)
Fix:(Line 87 and 88)
(* ,seconds-symbol #+(or openmcl ccl)
ccl:*ticks-per-second* #+digitool 60)
--
_________________
Kjeld K. B. Massali
denatus at gmail.com
------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/trivial-timeout-devel/attachments/20080919/2223598a/attachment.html>
More information about the trivial-timeout-devel
mailing list