mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-08 05:27:33 +02:00
Issue #132 - Protect against hang
This commit is contained in:
parent
ec108bdcef
commit
12770291b7
1 changed files with 2 additions and 1 deletions
|
@ -96,7 +96,8 @@
|
||||||
;; Follow references
|
;; Follow references
|
||||||
((ref? value)
|
((ref? value)
|
||||||
(with-var! value (lambda (var)
|
(with-var! value (lambda (var)
|
||||||
(update-lambda-atv! (cons value syms) (adbv:assigned-value var)))))
|
(if (not (member value syms))
|
||||||
|
(update-lambda-atv! (cons value syms) (adbv:assigned-value var))))))
|
||||||
(else
|
(else
|
||||||
#f))
|
#f))
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue