From: Chris Hanson Date: Tue, 6 Jul 1999 15:08:04 +0000 (+0000) Subject: Copy the arguments list returned by *ARGS*. X-Git-Tag: 20090517-FFI~4512 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=869e62b781c09e335c2a0f4044249ca6f121666e;p=mit-scheme.git Copy the arguments list returned by *ARGS*. --- diff --git a/v7/src/runtime/advice.scm b/v7/src/runtime/advice.scm index 2deed1d4c..e46f42f19 100644 --- a/v7/src/runtime/advice.scm +++ b/v7/src/runtime/advice.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: advice.scm,v 14.15 1999/01/02 06:11:34 cph Exp $ +$Id: advice.scm,v 14.16 1999/07/06 15:08:04 cph Exp $ Copyright (c) 1988-1999 Massachusetts Institute of Technology @@ -154,7 +154,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (define the-result) (define (*args*) - the-arguments) + (list-copy the-arguments)) (define (*proc*) the-procedure)