mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-12 23:37:38 +02:00
bugfixes
This commit is contained in:
parent
9a98356589
commit
edccb56163
1 changed files with 9 additions and 7 deletions
|
@ -190,13 +190,15 @@
|
||||||
(cddr ast))))
|
(cddr ast))))
|
||||||
|
|
||||||
(define (lib:inlines ast)
|
(define (lib:inlines ast)
|
||||||
(map
|
(apply
|
||||||
(lambda (inc-lst)
|
append
|
||||||
(cadr inc-lst))
|
(map
|
||||||
(filter
|
(lambda (inc-lst)
|
||||||
(lambda (code)
|
(cdr inc-lst))
|
||||||
(tagged-list? 'inline code))
|
(filter
|
||||||
(cddr ast))))
|
(lambda (code)
|
||||||
|
(tagged-list? 'inline code))
|
||||||
|
(cddr ast)))))
|
||||||
|
|
||||||
;; TODO: include-ci, cond-expand
|
;; TODO: include-ci, cond-expand
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue