Skip to content

Commit

Permalink
Fix bug in UNZIP-ALIST
Browse files Browse the repository at this point in the history
Thanks to Hraban Luyat for pointing this out.
  • Loading branch information
adlai committed Jun 17, 2012
1 parent ec7ded8 commit efc77c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.lisp
Expand Up @@ -14,7 +14,7 @@

(defun unzip-alist (alist)
"Returns two fresh lists containing the keys and values of ALIST"
(loop for pair on alist
(loop for pair in alist
collect (car pair) into keys
collect (cdr pair) into vals
finally (return (values keys vals))))
Expand Down

0 comments on commit efc77c0

Please sign in to comment.