From 6b0ba7a9a36a55814f6c4cf09a393ab769eab903 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 29 Nov 1993 23:19:02 +0000 Subject: [PATCH] Fix think-o in previous change. --- v7/src/runtime/unxprm.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/unxprm.scm b/v7/src/runtime/unxprm.scm index 87238037f..f137d1db0 100644 --- a/v7/src/runtime/unxprm.scm +++ b/v7/src/runtime/unxprm.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: unxprm.scm,v 1.27 1993/11/29 21:09:30 cph Exp $ +$Id: unxprm.scm,v 1.28 1993/11/29 23:19:02 cph Exp $ Copyright (c) 1988-1993 Massachusetts Institute of Technology @@ -89,7 +89,8 @@ MIT in each case. |# pathname (begin (if (> ext 999) - (error "Can't find unique temporary pathname:" root)) + (error "Can't find unique temporary pathname:" + (merge-pathnames root-string directory))) (loop (+ ext 1)))))))) (define (temporary-directory-pathname) -- 2.25.1