Skip to content

Commit

Permalink
fix filter
Browse files Browse the repository at this point in the history
  • Loading branch information
n2n3 committed Sep 27, 2011
1 parent 1d6771b commit 5c7a2ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.lisp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
(cond (cond
((null filter_lst) filter_lst) ((null filter_lst) filter_lst)
(t (cond (t (cond
((filter_f (car filter_lst)) (append ((filter_f (car filter_lst)) (cons
(car filter_lst) (car filter_lst)
(filter filter_f (cdr filter_lst)))) (filter filter_f (cdr filter_lst))))
(t (filter filter_f (cdr filter_lst)))))))) (t (filter filter_f (cdr filter_lst))))))))
Expand Down

0 comments on commit 5c7a2ed

Please sign in to comment.