Skip to content

Commit

Permalink
Fix type derivation error in SBCL
Browse files Browse the repository at this point in the history
Thanks to Stas Boukarev for the suggestion.
  • Loading branch information
sionescu committed Aug 22, 2016
1 parent e2a0052 commit 02e67ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion split-sequence.lisp
Expand Up @@ -85,7 +85,7 @@ stopped."
(split-from-end (lambda (sequence end)
(position delimiter sequence :end end :from-end t :key key :test test))
sequence start end count remove-empty-subseqs))
((and from-end test-not)
(t
(split-from-end (lambda (sequence end)
(position delimiter sequence :end end :from-end t :key key :test-not test-not))
sequence start end count remove-empty-subseqs))))
Expand Down

0 comments on commit 02e67ab

Please sign in to comment.