remove redundant final put
we aren't grouping anything effectful at the moment, so anything trailing is pointless
This commit is contained in:
parent
3c32c92530
commit
64b5785bcc
1 changed files with 0 additions and 2 deletions
2
bf.lisp
2
bf.lisp
|
@ -3,7 +3,6 @@
|
|||
(defmacro incmodf (place mod &optional (delta 1))
|
||||
`(setf ,place (mod (+ ,place ,delta) ,mod)))
|
||||
|
||||
|
||||
; TODO: ooo could totally gen from sym (e.g. '++-[]>)
|
||||
; then i'd need some sort of var syntax ugh
|
||||
(defpattern cmd (op val)
|
||||
|
@ -55,7 +54,6 @@
|
|||
`(loop until (zerop cell)
|
||||
do (progn ,@inner)))
|
||||
out))))
|
||||
finally (put)
|
||||
finally (return (nreverse out)))))
|
||||
|
||||
(defparameter mem-size 32768)
|
||||
|
|
Loading…
Reference in a new issue