From: Chris Hanson Date: Wed, 17 Jan 2007 15:58:44 +0000 (+0000) Subject: Fix typo in previous change. X-Git-Tag: 20090517-FFI~777 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6bd34bd24139e66096ccaf14237c0c09583e46c9;p=mit-scheme.git Fix typo in previous change. --- diff --git a/v7/src/runtime/unicode.scm b/v7/src/runtime/unicode.scm index 6adddb3de..53f4bf606 100644 --- a/v7/src/runtime/unicode.scm +++ b/v7/src/runtime/unicode.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: unicode.scm,v 1.31 2007/01/17 15:42:39 cph Exp $ +$Id: unicode.scm,v 1.32 2007/01/17 15:58:44 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -145,7 +145,7 @@ USA. (define (%unicode-code-point? object) (and (index-fixnum? object) - (fix:< pt char-code-limit))) + (fix:< object char-code-limit))) (define-guarantee unicode-code-point "a Unicode code point")