mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Fixes for self-hosting
This commit is contained in:
parent
1b2560f5a4
commit
7b1092e27a
1 changed files with 7 additions and 1 deletions
|
@ -10,6 +10,9 @@
|
|||
(cond-expand
|
||||
(chicken
|
||||
(load (string-append (cyc:get-lib-dir) "scheme/common.scm")))
|
||||
(cyclone
|
||||
;; Temporary work-around for pp not being implemented yet
|
||||
(define pretty-print write))
|
||||
(else
|
||||
#f))
|
||||
|
||||
|
@ -216,8 +219,11 @@
|
|||
#f
|
||||
(if (eq? sym (car S))
|
||||
#t
|
||||
(member sym (cdr S)))))
|
||||
(member sym (cdr S))))))
|
||||
(else #f))
|
||||
|
||||
(cond-expand
|
||||
(cyclone
|
||||
; void : -> void
|
||||
(define (void) (if #f #t)))
|
||||
(else #f))
|
||||
|
|
Loading…
Add table
Reference in a new issue