From cd81fbbea8a73db806106f903a5e6714f61d7509 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 14 Aug 2015 01:35:14 -0400 Subject: [PATCH] Fixup how macro:add stores macros --- scheme/cyclone/macros.sld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheme/cyclone/macros.sld b/scheme/cyclone/macros.sld index cb0e59c5..f56f8bc6 100644 --- a/scheme/cyclone/macros.sld +++ b/scheme/cyclone/macros.sld @@ -15,7 +15,7 @@ (define (macro:add! name body) (set! *macro:defined-macros* - (cons (cons name body) *macro:defined-macros*)) + (cons (cons name (cons body '())) *macro:defined-macros*)) #t) (define (macro:get-defined-macros) *macro:defined-macros*)