mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 04:55:04 +02:00
Revert previous incorrect change to macro:add!
This commit is contained in:
parent
ca739ab9d0
commit
92f980b8ce
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 (cons body '())) *macro:defined-macros*))
|
(cons (cons name 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