fixed call/cc -> call-with-current-continuation typo.

This commit is contained in:
frese 2001-07-16 13:06:20 +00:00
parent 37a4d6ac46
commit d198d95710
1 changed files with 9 additions and 8 deletions

View File

@ -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)