Rename param to "cps?"

This commit is contained in:
Justin Ethier 2017-04-18 13:21:19 +00:00
parent 9f26868ef0
commit 2da2317a91

View file

@ -864,9 +864,9 @@
(c-code/vars "" (list "")))) (c-code/vars "" (list ""))))
(define (c-compile-raw-global-lambda exp append-preamble cont trace . inline?) (define (c-compile-raw-global-lambda exp append-preamble cont trace . cps?)
(let* ((precompiled-sym (let* ((precompiled-sym
(if (equal? inline? '(#t)) (if (equal? cps? '(#f))
'precompiled-inline-lambda 'precompiled-inline-lambda
'precompiled-lambda)) 'precompiled-lambda))
(lambda-data (lambda-data
@ -900,7 +900,7 @@
append-preamble append-preamble
cont cont
trace trace
#t)))) ;; Inline this one #f)))) ;; Inline this one; CPS will not be used
;; Add this define-c ;; Add this define-c
(add-global (add-global
(define->var exp) (define->var exp)