Skip to content

Commit

Permalink
* Fixed MEMV
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Sandro Queiroz e Silva committed May 6, 2010
1 parent 9f899b5 commit ba9803a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init.scm
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
(cond
((null? lst) #f)
((eqv? x (car lst)) lst)
(else (memq x (cdr lst)))))
(else (memv x (cdr lst)))))

(define (member x lst)
(cond
Expand Down

0 comments on commit ba9803a

Please sign in to comment.