RUN-SYNCHRONOUS-PROCESS now calls OS/FIND-PROGRAM on its program
authorChris Hanson <org/chris-hanson/cph>
Mon, 10 Apr 1995 16:50:04 +0000 (16:50 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 10 Apr 1995 16:50:04 +0000 (16:50 +0000)
argument -- this allows invocation of a program without knowing its
precise location in the file system.

v7/src/edwin/process.scm

index 5b25e6a1e48b067188ec918109343348e69df694..8112c28314cbcd197f09eb8032c3c7ab826cf055 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Id: process.scm,v 1.36 1995/01/30 20:04:30 cph Exp $
+;;;    $Id: process.scm,v 1.37 1995/04/10 16:50:04 cph Exp $
 ;;;
 ;;;    Copyright (c) 1991-95 Massachusetts Institute of Technology
 ;;;
@@ -543,7 +543,7 @@ after the listing is made.)"
       (lambda ()
        (set! process
              (start-subprocess
-              program
+              (os/find-program program directory)
               (list->vector (cons (file-namestring program) arguments))
               (if directory
                   (cons false (->namestring directory))