From: Chris Hanson Date: Mon, 29 Nov 1993 23:19:02 +0000 (+0000) Subject: Fix think-o in previous change. X-Git-Tag: 20090517-FFI~7412 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6b0ba7a9a36a55814f6c4cf09a393ab769eab903;p=mit-scheme.git Fix think-o in previous change. --- 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)