From: Chris Hanson Date: Sun, 29 Apr 2007 18:26:20 +0000 (+0000) Subject: Fix typos in previous change. X-Git-Tag: 20090517-FFI~625 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=067a8682d3aca9cd6136f3a53264c12e6e39cab9;p=mit-scheme.git Fix typos in previous change. --- diff --git a/v7/src/runtime/boot.scm b/v7/src/runtime/boot.scm index 683ca5891..be447badf 100644 --- a/v7/src/runtime/boot.scm +++ b/v7/src/runtime/boot.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: boot.scm,v 14.26 2007/04/25 14:06:14 cph Exp $ +$Id: boot.scm,v 14.27 2007/04/29 18:26:20 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -129,10 +129,12 @@ USA. (define-primitives gc-space-status) -(define (pure? object) +(define (object-pure? object) + object #f) -(define (constant? object) +(define (object-constant? object) + object #t) (define-integrable (default-object? object)