From: Guillermo J. Rozas Date: Mon, 29 Nov 1993 19:10:21 +0000 (+0000) Subject: Fix minor bug. X-Git-Tag: 20090517-FFI~7419 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=5f5177b7732778b379df961ea27908b0d2198307;p=mit-scheme.git Fix minor bug. --- diff --git a/v7/src/compiler/base/toplev.scm b/v7/src/compiler/base/toplev.scm index f9d4beccd..5197a1070 100644 --- a/v7/src/compiler/base/toplev.scm +++ b/v7/src/compiler/base/toplev.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: toplev.scm,v 4.50 1993/11/29 19:04:31 gjr Exp $ +$Id: toplev.scm,v 4.51 1993/11/29 19:10:21 gjr Exp $ Copyright (c) 1988-1993 Massachusetts Institute of Technology @@ -149,7 +149,7 @@ MIT in each case. |# (define (compile-procedure procedure #!optional keep-debugging-info?) (compiler-output->procedure (compile-scode/no-file - scode + (procedure-lambda scode) (and (or (default-object? keep-debugging-info?) keep-debugging-info?) 'KEEP))