diff options
Diffstat (limited to 'nim/parseopt.pas')
-rw-r--r-- | nim/parseopt.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nim/parseopt.pas b/nim/parseopt.pas index d543b998e..0ca87bd37 100644 --- a/nim/parseopt.pas +++ b/nim/parseopt.pas @@ -51,7 +51,7 @@ begin else begin result.cmd := ''; for i := 1 to ParamCount() do - result.cmd := result.cmd +{&} quoteIfSpaceExists(paramStr(i)) +{&} ' '; + result.cmd := result.cmd +{&} quoteIfContainsWhite(paramStr(i)) +{&} ' '; {@ignore} result.cmd := result.cmd + #0; {@emit} |