Change name: RUN-SYNCHRONOUS-PROCESS to RUN-SYNCHRONOUS-SUBPROCESS.
authorChris Hanson <org/chris-hanson/cph>
Sun, 31 Jan 1999 20:48:23 +0000 (20:48 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 31 Jan 1999 20:48:23 +0000 (20:48 +0000)
Change calling convention of RUN-SYNCHRONOUS-SUBPROCESS and
RUN-SHELL-COMMAND to accept keyword arguments, and eliminate
MAKE-SUBPROCESS-CONTEXT.

v7/src/runtime/syncproc.scm

index 7fad65198ca73ab0645d4e88939e9f6356610819..1c9a3098865ab1ea71e60fddc9e04d6986dbc60f 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: syncproc.scm,v 1.4 1999/01/31 20:46:25 cph Exp $
+$Id: syncproc.scm,v 1.5 1999/01/31 20:48:23 cph Exp $
 
 Copyright (c) 1999 Massachusetts Institute of Technology
 
@@ -61,8 +61,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
                                  context)))
 
 (define (run-synchronous-subprocess program arguments . options)
-  (run-synchronous-process-1 program arguments
-                            (apply make-subprocess-context options)))
+  (run-synchronous-subprocess-1 program arguments
+                               (apply make-subprocess-context options)))
 
 (define (run-synchronous-subprocess-1 program arguments context)
   (let* ((directory (subprocess-context/working-directory context))