loop2.lsp: declare ignoring 'env' in 'loop-body'. Closes #15.
authorDaniel Kochmański <dkochmanski@hellsgate.pl>
Sat, 14 Mar 2015 19:08:47 +0000 (20:08 +0100)
committerDaniel Kochmański <dkochmanski@hellsgate.pl>
Sat, 14 Mar 2015 19:08:47 +0000 (20:08 +0100)
src/lsp/loop2.lsp

index 5bba874..7b59d8e 100755 (executable)
@@ -585,6 +585,7 @@ a LET-like macro, and a SETQ-like macro, which perform LOOP-style destructuring.
                     main-body
                     after-loop
                     epilogue)
+  (declare (ignore env))
   (unless (= (length before-loop) (length after-loop))
     (error "LOOP-BODY called with non-synched before- and after-loop lists."))
   ;;All our work is done from these copies, working backwards from the end: