mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 04:55:04 +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
|
(cond-expand
|
||||||
(chicken
|
(chicken
|
||||||
(load (string-append (cyc:get-lib-dir) "scheme/common.scm")))
|
(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
|
(else
|
||||||
#f))
|
#f))
|
||||||
|
|
||||||
|
@ -216,8 +219,11 @@
|
||||||
#f
|
#f
|
||||||
(if (eq? sym (car S))
|
(if (eq? sym (car S))
|
||||||
#t
|
#t
|
||||||
(member sym (cdr S)))))
|
(member sym (cdr S))))))
|
||||||
|
(else #f))
|
||||||
|
|
||||||
|
(cond-expand
|
||||||
|
(cyclone
|
||||||
; void : -> void
|
; void : -> void
|
||||||
(define (void) (if #f #t)))
|
(define (void) (if #f #t)))
|
||||||
(else #f))
|
(else #f))
|
||||||
|
|
Loading…
Add table
Reference in a new issue