mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-16 17:27:33 +02:00
Commented-out legacy code (for now, will delete later)
This commit is contained in:
parent
2c73f20e99
commit
ad3f716a0b
1 changed files with 6 additions and 5 deletions
|
@ -1234,11 +1234,12 @@
|
||||||
(cond
|
(cond
|
||||||
((> (length unknown-vars) 0)
|
((> (length unknown-vars) 0)
|
||||||
(let ((unbound-to-return (list)))
|
(let ((unbound-to-return (list)))
|
||||||
(if (member 'eval unknown-vars)
|
;; Legacy? Should not be any reason to return early at this point
|
||||||
(set! unbound-to-return (cons 'eval unbound-to-return)))
|
;(if (member 'eval unknown-vars)
|
||||||
(if (or (member 'read unknown-vars)
|
; (set! unbound-to-return (cons 'eval unbound-to-return)))
|
||||||
(member 'read-all unknown-vars))
|
;(if (or (member 'read unknown-vars)
|
||||||
(set! unbound-to-return (cons 'read unbound-to-return)))
|
; (member 'read-all unknown-vars))
|
||||||
|
; (set! unbound-to-return (cons 'read unbound-to-return)))
|
||||||
(if (and (> (length unbound-to-return) 0)
|
(if (and (> (length unbound-to-return) 0)
|
||||||
(= (length unknown-vars) (length unbound-to-return)))
|
(= (length unknown-vars) (length unbound-to-return)))
|
||||||
(return-unbound unbound-to-return)
|
(return-unbound unbound-to-return)
|
||||||
|
|
Loading…
Add table
Reference in a new issue