fixed call/cc -> call-with-current-continuation typo.
This commit is contained in:
parent
37a4d6ac46
commit
d198d95710
|
@ -54,7 +54,8 @@
|
||||||
r)))
|
r)))
|
||||||
|
|
||||||
(define (color-list-find* r g b) ;; r,g,b as integers
|
(define (color-list-find* r g b) ;; r,g,b as integers
|
||||||
(call/cc (lambda (return)
|
(call-with-current-continuation
|
||||||
|
(lambda (return)
|
||||||
(table-walk (lambda (key value)
|
(table-walk (lambda (key value)
|
||||||
(let ((color (weak-pointer-ref value)))
|
(let ((color (weak-pointer-ref value)))
|
||||||
(if (equal? (list r g b)
|
(if (equal? (list r g b)
|
||||||
|
|
Loading…
Reference in New Issue