Define `undefined-conditional-branch' constant which is used to build
authorChris Hanson <org/chris-hanson/cph>
Tue, 19 May 1987 12:51:34 +0000 (12:51 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 19 May 1987 12:51:34 +0000 (12:51 +0000)
two-armed IF statements and COND with no ELSE clause.

v7/src/runtime/scode.scm

index 37624c0b6235ed9856fe8d7494d21c23cfcb6f5e..090ba7a9e719d3326d3b6fce56dd4117a33bba41 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/scode.scm,v 13.42 1987/03/17 18:52:47 cph Exp $
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/scode.scm,v 13.43 1987/05/19 12:51:34 cph Exp $
 ;;;
 ;;;    Copyright (c) 1987 Massachusetts Institute of Technology
 ;;;
@@ -68,6 +68,9 @@
   (set! make-false (make-constant-maker 'FALSE))
   (set! make-true (make-constant-maker 'TRUE)))
 
+(define undefined-conditional-branch
+  (primitive-set-type (microcode-type 'TRUE 1)))
+
 ;;;; QUOTATION
 
 (define quotation?)