diff options
-rw-r--r-- | src/interp/sys-os.boot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/sys-os.boot b/src/interp/sys-os.boot index aae3dad3..9ace7b71 100644 --- a/src/interp/sys-os.boot +++ b/src/interp/sys-os.boot @@ -187,7 +187,7 @@ import oa__system: string -> int for runCommand ++ run a program with specified arguments runProgram(prog,args) == )if %hasFeature KEYWORD::GCL - SYSTEM::SYSTEM CONCAT/[prog,:[:['" ",a] for a in args]] + SYSTEM::SYSTEM(CONCAT/[prog,:[:['" ",a] for a in args]]) )elseif %hasFeature KEYWORD::CLISP EXT::RUN_-PROGRAM(prog,KEYWORD::ARGUMENTS,args) )elseif %hasFeature KEYWORD::SBCL |