From: Chris Hanson Date: Fri, 25 Apr 2003 03:31:49 +0000 (+0000) Subject: Fix typo. X-Git-Tag: 20090517-FFI~1917 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ddbe6fcbbf962d5cfd9d0cfe9b90a8290cb4c473;p=mit-scheme.git Fix typo. --- diff --git a/v7/src/runtime/list.scm b/v7/src/runtime/list.scm index 23e719e31..2be56e537 100644 --- a/v7/src/runtime/list.scm +++ b/v7/src/runtime/list.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: list.scm,v 14.36 2003/03/07 05:42:38 cph Exp $ +$Id: list.scm,v 14.37 2003/04/25 03:31:49 cph Exp $ Copyright 1986,1987,1988,1989,1990,1991 Massachusetts Institute of Technology Copyright 1992,1993,1994,1995,1996,2000 Massachusetts Institute of Technology @@ -179,7 +179,7 @@ USA. n)) (define (guarantee-list-of-type->length object predicate description caller) - (let ((n (list-of-type? object predicate))) + (let ((n (list-of-type?->length object predicate))) (if (not n) (error:wrong-type-argument object description caller)) n))