From 2d588570a4a77246c33d025f8851c6c3ce2202b8 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 1 Sep 2008 01:17:22 -0400 Subject: If the COUNT is less than zero, run all the remaining tests. --- chess-test.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chess-test.el') diff --git a/chess-test.el b/chess-test.el index 228fcfa..2446982 100644 --- a/chess-test.el +++ b/chess-test.el @@ -28,7 +28,7 @@ (index (if start (max start 1) 1)) - (last-index (if count + (last-index (if (and count (> count 0)) (min db-count (+ index count)) db-count)) (begin (current-time)) -- cgit v1.2.3