Skip to content

Commit

Permalink
Fix LOOP for-as-hash syntax
Browse files Browse the repository at this point in the history
Ignore-this: c090fe6549d874d9ffc557a6d4eea33e

Patch by Jochen Schmidt.

darcs-hash:0bceb2626546752d81e937b1080e83aa398f9105
  • Loading branch information
lichtblau committed Feb 9, 2011
1 parent aaf2f64 commit fd63256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion profile.lisp
Expand Up @@ -203,7 +203,7 @@
(incf (second accum) real)
(incf (third accum)))
(loop
for key being each hash-key using (hash-value accum) in table
for key being each hash-key in table using (hash-value accum)
if (and (consp key) (eq (car key) 'pattern))
collect (cons key accum) into patterns
else collect (cons key accum) into expressions
Expand Down

0 comments on commit fd63256

Please sign in to comment.