From 4516fa25d6c3e21611ab388214dff5a94ce6ef42 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau Date: Wed, 1 Jul 2015 10:06:05 -0400 Subject: [PATCH] uiop: add missing space in run-program on Windows. Add a missing space between redirection and command on Windows. Error due to a recent refactoring yet untested. --- uiop/run-program.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uiop/run-program.lisp b/uiop/run-program.lisp index 47373e5c..2d485d0b 100644 --- a/uiop/run-program.lisp +++ b/uiop/run-program.lisp @@ -775,7 +775,7 @@ It returns a process-info plist with possible keys: (reduce/strcat (os-cond ((os-unix-p) `(,@(when redirections `("exec " ,@redirections " ; ")) ,@chdir ,normalized)) - ((os-windows-p) `(,@chdir ,@redirections ,normalized))))))) + ((os-windows-p) `(,@chdir ,@redirections " " ,normalized))))))) (defun %system (command &rest keys &key input output error-output directory &allow-other-keys) -- GitLab