From a8c6b1bfed81675e753ec654658131bffab9573a Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 14 Mar 1991 04:26:42 +0000 Subject: [PATCH] Fix typo. --- v7/src/runtime/uerror.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/uerror.scm b/v7/src/runtime/uerror.scm index a650d5762..75fb0c03b 100644 --- a/v7/src/runtime/uerror.scm +++ b/v7/src/runtime/uerror.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/uerror.scm,v 14.22 1991/03/11 23:33:03 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/uerror.scm,v 14.23 1991/03/14 04:26:42 cph Exp $ Copyright (c) 1988-91 Massachusetts Institute of Technology @@ -442,7 +442,7 @@ MIT in each case. |# (make-condition-type 'UNLINKABLE-VARIABLE condition-type:variable-error '() (lambda (condition port) (write-string "The variable " port) - (write (access-condition condition 'NAME) port) + (write (access-condition condition 'LOCATION) port) (write-string " is already bound; it cannot be linked to." port)))) (define-error-handler 'BAD-ASSIGNMENT -- 2.25.1