Revert previous incorrect change to macro:add!

This commit is contained in:
Justin Ethier 2015-08-14 01:52:58 -04:00
parent ca739ab9d0
commit 92f980b8ce

View file

@ -15,7 +15,7 @@
(define (macro:add! name body)
(set! *macro:defined-macros*
(cons (cons name (cons body '())) *macro:defined-macros*))
(cons (cons name body) *macro:defined-macros*))
#t)
(define (macro:get-defined-macros) *macro:defined-macros*)