Fixed a comparison that was too strict, making the code go to the

general case on lists of length 3.  (Didn't have much effect since it's
only the toplevel comparison).

svn: r16899
This commit is contained in:
Eli Barzilay 2009-11-19 21:58:44 +00:00
parent eb9eeda873
commit e2cd7a51e5

View File

@ -154,7 +154,7 @@
lst]
;; below we can assume an unsorted list
;; inlined case, for optimization of short lists
[(< n 3)
[(<= n 3)
(if (= n 2)
;; (because of the above test, we can assume that the input is
;; unsorted)