From f74b050733a463488bf840b4db948394277ab1a4 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 9 Jan 2007 06:36:21 +0000 Subject: [PATCH] Simplify UNDEFINED-VALUE?. --- v7/src/runtime/global.scm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/v7/src/runtime/global.scm b/v7/src/runtime/global.scm index 26cd78fac..3db9244b5 100644 --- a/v7/src/runtime/global.scm +++ b/v7/src/runtime/global.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: global.scm,v 14.77 2007/01/05 21:19:28 cph Exp $ +$Id: global.scm,v 14.78 2007/01/09 06:36:21 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -311,10 +311,7 @@ USA. ;; Note: the unparser takes advantage of the fact that objects ;; satisfying this predicate also satisfy: ;; (object-type? (ucode-type constant) object) - (or (eq? object undefined-conditional-branch) - ;; same as `undefined-conditional-branch'. - ;; (eq? object *the-non-printing-object*) - ;; (eq? object unspecific) + (or (eq? object unspecific) (eq? object (object-new-type (ucode-type constant) 2)))) (define unspecific -- 2.25.1