From 0de27f9e703e40e130e40732f944de1520aebeea Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 7 Jun 1998 08:25:02 +0000 Subject: [PATCH] Fix quoting problem associated with #!aux parsing. --- v7/src/runtime/parse.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/src/runtime/parse.scm b/v7/src/runtime/parse.scm index 16861b394..ab1597886 100644 --- a/v7/src/runtime/parse.scm +++ b/v7/src/runtime/parse.scm @@ -1,8 +1,8 @@ #| -*-Scheme-*- -$Id: parse.scm,v 14.28 1997/08/08 21:29:38 cph Exp $ +$Id: parse.scm,v 14.29 1998/06/07 08:25:02 cph Exp $ -Copyright (c) 1988-97 Massachusetts Institute of Technology +Copyright (c) 1988-98 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -62,7 +62,7 @@ MIT in each case. |# (set! lambda-optional-tag (object-new-type (microcode-type 'CONSTANT) 3)) (set! lambda-rest-tag (object-new-type (microcode-type 'CONSTANT) 4)) - (set! lambda-auxiliary-tag (intern "#!aux")) + (set! lambda-auxiliary-tag `',(intern "#!aux")) (set! dot-symbol (intern ".")) (set! named-objects `((NULL . ,(list)) -- 2.25.1