#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/global.scm,v 14.3 1988/06/16 06:30:22 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/global.scm,v 14.4 1988/08/05 20:15:45 cph Exp $
Copyright (c) 1988 Massachusetts Institute of Technology
(or (eq? object undefined-conditional-branch)
;; same as `undefined-conditional-branch'.
;; (eq? object *the-non-printing-object*)
- (eq? object (microcode-object/unassigned))))
\ No newline at end of file
+ ;; (eq? object unspecific)
+ (eq? object (microcode-object/unassigned))))
+
+(define *the-non-printing-object*
+ (object-new-type (ucode-type true) 1))
+
+(define unspecific
+ (object-new-type (ucode-type true) 1))
\ No newline at end of file
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/gconst.scm,v 4.1 1988/06/13 12:29:28 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/gconst.scm,v 4.2 1988/08/05 20:15:15 cph Rel $
Copyright (c) 1987 Massachusetts Institute of Technology
TRUNCATE
UNDEFINED-CONDITIONAL-BRANCH
UNSIGNED-INTEGER->BIT-STRING
+ UNSPECIFIC
VECTOR
VECTOR-8B-FILL!
VECTOR-8B-FIND-NEXT-CHAR
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/global.scm,v 14.3 1988/06/16 06:30:22 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/global.scm,v 14.4 1988/08/05 20:15:45 cph Exp $
Copyright (c) 1988 Massachusetts Institute of Technology
(or (eq? object undefined-conditional-branch)
;; same as `undefined-conditional-branch'.
;; (eq? object *the-non-printing-object*)
- (eq? object (microcode-object/unassigned))))
\ No newline at end of file
+ ;; (eq? object unspecific)
+ (eq? object (microcode-object/unassigned))))
+
+(define *the-non-printing-object*
+ (object-new-type (ucode-type true) 1))
+
+(define unspecific
+ (object-new-type (ucode-type true) 1))
\ No newline at end of file