loop2.lsp: declare ignoring 'env' in 'loop-body'. Closes #15.

This commit is contained in:
Daniel Kochmański 2015-03-14 20:08:47 +01:00
parent 36e80a3c66
commit f4dcab9203

View file

@ -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: