From: Chris Hanson Date: Wed, 18 Mar 1987 22:51:09 +0000 (+0000) Subject: The info stored in operations is 2-valued and must be separated into X-Git-Tag: 20090517-FFI~13669 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=585a835e241792415f3e5e58b5d6fc2d4f5180e7;p=mit-scheme.git The info stored in operations is 2-valued and must be separated into its components before being changed to the external representation. --- diff --git a/v7/src/sf/pardec.scm b/v7/src/sf/pardec.scm index 23428198c..597a65367 100644 --- a/v7/src/sf/pardec.scm +++ b/v7/src/sf/pardec.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/pardec.scm,v 3.1 1987/03/13 04:13:19 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/sf/pardec.scm,v 3.2 1987/03/18 22:51:09 cph Exp $ Copyright (c) 1987 Massachusetts Institute of Technology @@ -301,5 +301,7 @@ MIT in each case. |# block expression))))))) (if info - (finish info) + (transmit-values info + (lambda (value uninterned) + (finish value))) (variable/final-value variable environment finish if-not)))))) \ No newline at end of file