Skip to content

Commit

Permalink
Reverse WITH and FOR in LOOP.
Browse files Browse the repository at this point in the history
Some lisps don't like having the WITH bindings before FOR.
  • Loading branch information
rpgoldman committed Apr 16, 2019
1 parent 3b17d68 commit 6322771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ test-op, we will fail if the expected number of checks are not run.")

(defmethod perform ((op test-op) (sys fiveam-tester-system))
(let* ((test-syms
(loop for x in (test-names sys)
with test-name and package-name and test-sym and package
(loop with test-name and package-name and test-sym and package
for x in (test-names sys)
if (symbolp x)
do (setf test-name x
package-name (test-package sys))
Expand Down

0 comments on commit 6322771

Please sign in to comment.