projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
925f153
)
Allow working directory to be a pathname.
author
Chris Hanson
<org/chris-hanson/cph>
Mon, 1 Feb 1999 05:13:24 +0000
(
05:13
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Mon, 1 Feb 1999 05:13:24 +0000
(
05:13
+0000)
v7/src/runtime/process.scm
patch
|
blob
|
history
diff --git
a/v7/src/runtime/process.scm
b/v7/src/runtime/process.scm
index 22c396bc48919d35b2faf7525d49013b0ece38e4..efa71d287a62fd2c8a05915d36ebe15d60115b83 100644
(file)
--- a/
v7/src/runtime/process.scm
+++ b/
v7/src/runtime/process.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: process.scm,v 1.2
3 1999/02/01 03:29
:24 cph Exp $
+$Id: process.scm,v 1.2
4 1999/02/01 05:13
:24 cph Exp $
Copyright (c) 1989-1999 Massachusetts Institute of Technology
@@
-167,7
+167,9
@@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
(stderr (convert-stdio-arg stderr)))
(if (pair? environment)
(begin
- (set! working-directory (cdr environment))
+ (set! working-directory
+ (and (cdr environment)
+ (->namestring (cdr environment))))
(set! environment (car environment))))
(without-interrupts
(lambda ()