mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Fixup how macro:add stores macros
This commit is contained in:
parent
d4588ecc80
commit
cd81fbbea8
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
(define (macro:add! name body)
|
(define (macro:add! name body)
|
||||||
(set! *macro:defined-macros*
|
(set! *macro:defined-macros*
|
||||||
(cons (cons name body) *macro:defined-macros*))
|
(cons (cons name (cons body '())) *macro:defined-macros*))
|
||||||
#t)
|
#t)
|
||||||
|
|
||||||
(define (macro:get-defined-macros) *macro:defined-macros*)
|
(define (macro:get-defined-macros) *macro:defined-macros*)
|
||||||
|
|
Loading…
Add table
Reference in a new issue