1.0.27.47: fix RUN-PROGRAM on windows
authorGabor Melis <mega@hotpop.com>
Mon, 27 Apr 2009 20:26:10 +0000 (20:26 +0000)
committerGabor Melis <mega@hotpop.com>
Mon, 27 Apr 2009 20:26:10 +0000 (20:26 +0000)
Hopefully. There are mixed reports from users.

src/code/run-program.lisp
version.lisp-expr

index 04b5d6a..dbb16cc 100644 (file)
@@ -759,7 +759,7 @@ Users Manual for details about the PROCESS structure."#-win32"
                                                   (if search 1 0)
                                                   environment-vec pty-name
                                                   (if wait 1 0))))
-                             (when (plusp child)
+                             (unless (= child -1)
                                (setf proc
                                      (apply
                                       #'make-process
index f811532..722905a 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.27.46"
+"1.0.27.47"