From a4ff737f97b9144ec9a312e5deb5a3e48c0448e0 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sat, 15 May 1999 02:50:34 +0000 Subject: [PATCH] Fix previous change. Problem is subtle -- LAMBDA-AUXILIARY-TAG was being used in one place as an expression and in another as a constant. Now it is defined to be a constant, and the expression usage has been tweaked to expect a constant. --- v7/src/runtime/parse.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/parse.scm b/v7/src/runtime/parse.scm index 9e8501077..9203a7ff2 100644 --- a/v7/src/runtime/parse.scm +++ b/v7/src/runtime/parse.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: parse.scm,v 14.32 1999/05/14 22:15:47 cph Exp $ +$Id: parse.scm,v 14.33 1999/05/15 02:50:34 cph Exp $ Copyright (c) 1988-1999 Massachusetts Institute of Technology @@ -57,7 +57,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (TRUE . ,true) (OPTIONAL . ,lambda-optional-tag) (REST . ,lambda-rest-tag) - (AUX . ,lambda-auxiliary-tag))) + (AUX . ',lambda-auxiliary-tag))) (set! *parser-radix* 10) (set! *parser-associate-positions?* false) -- 2.25.1