From 6ef68e0587218349acba4b3a29a4bd6acdbb829b Mon Sep 17 00:00:00 2001 From: Stephen Adams Date: Tue, 30 Jul 1996 16:54:58 +0000 Subject: [PATCH] Fixed arity and formatting problems. --- v8/src/runtime/coerce.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/v8/src/runtime/coerce.scm b/v8/src/runtime/coerce.scm index adbfb0787..f17889e16 100644 --- a/v8/src/runtime/coerce.scm +++ b/v8/src/runtime/coerce.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: coerce.scm,v 1.7 1996/07/30 16:26:51 adams Exp $ +$Id: coerce.scm,v 1.8 1996/07/30 16:54:58 adams Exp $ Copyright (c) 1996 Massachusetts Institute of Technology @@ -197,11 +197,10 @@ MIT in each case. |# (define (%compiled-code-support:nonrestartable-continuation result) (error - "You attempted to return to a subproblem with a non-restartable error in" - (error-irritant/noise "compiled code, using the value: \n; ") + "You attempted to return to a subproblem with a non-restartable error in compiled code, using the value: ") result)) -(define (%compiled-code-support:signal-error-in-primitive prim args) +(define (%compiled-code-support:signal-error-in-primitive prim . args) (apply prim args)) ;; This is defined in make.scm: -- 2.25.1